Skip to content

Commit 8915849

Browse files
committed
Less verbose, disable turbo check
1 parent 8c473bc commit 8915849

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,20 @@ jobs:
2121
poetry-version: 1.8.4
2222

2323
- name: Install Dependencies (Pure Python)
24-
run: poetry install -vvv --without dev,docs
24+
run: poetry install -v --without dev,docs
2525

2626
- name: Run Tests (Pure Python with coverage)
2727
run: poetry run pytest --cov=iscc_core --cov-report=xml -q tests
2828

2929
- name: Build Extension modules
30-
run: poetry install -vvv --without dev,docs --extras turbo
30+
run: poetry install -v --without dev,docs --extras turbo
3131

3232
- name: Run Tests (With Extension Modules)
3333
run: poetry run pytest -q tests --turbo
3434

3535
- name: Upload coverage to Codecov
3636
uses: codecov/codecov-action@v3
37-
if: matrix.os == 'ubuntu-20.04' && matrix.python-version == '3.7'
37+
if: matrix.os == 'ubuntu-20.04' && matrix.python-version == '3.9'
3838

3939
- name: Build Wheel
4040
run: poetry build -f wheel

tests/test_check.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import iscc_core as ic
33

44

5-
def test_check_turbo(turbo):
6-
if turbo is False:
7-
assert ic.turbo() is False
8-
else:
9-
assert ic.turbo() is True
5+
# def test_check_turbo(turbo):
6+
# if turbo is False:
7+
# assert ic.turbo() is False
8+
# else:
9+
# assert ic.turbo() is True

0 commit comments

Comments
 (0)