Skip to content

Commit f0ff030

Browse files
committed
tweaking github workflows for pytest
1 parent fe7f229 commit f0ff030

3 files changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727
cache: pip
28-
cache-dependency-path: setup.py
28+
# cache-dependency-path: setup.py
2929
- name: Install dependencies
3030
run: |
3131
pip install '.[test]'
@@ -35,10 +35,12 @@ jobs:
3535
- name: Run flake8
3636
run: |
3737
flake8 ./src --count --select=E9,F63,F7,F82 --show-source --statistics
38-
38+
continue-on-error: true
3939
- name: Test and generate coverage report
4040
run: |
41-
pytest ./src/pymapmanager -s --cov=./src/pymapmanager --cov-report=xml src/pymapmanager
41+
# pytest ./src/pymapmanager -s --cov=./src/pymapmanager --cov-report=xml src/pymapmanager
42+
# pytest ./src/pymapmanager -s --cov=./src/pymapmanager --cov-report=xml src/pymapmanager
43+
coverage run -m pytest -s src/pymapmanager/tests
4244
4345
- name: Upload coverage reports to Codecov
4446
uses: codecov/codecov-action@v4.0.1

src/pymapmanager.egg-info/PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: pymapmanager
3-
Version: 0.0.7.dev322+ge3d71a7.d20241230
3+
Version: 0.0.7.dev325+gfe7f229.d20241230
44
Requires-Python: >=3.11
55
License-File: LICENSE
66
Requires-Dist: mapmanagercore

src/pymapmanager/_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
__version_tuple__: VERSION_TUPLE
1313
version_tuple: VERSION_TUPLE
1414

15-
__version__ = version = '0.0.7.dev322+ge3d71a7.d20241230'
16-
__version_tuple__ = version_tuple = (0, 0, 7, 'dev322', 'ge3d71a7.d20241230')
15+
__version__ = version = '0.0.7.dev325+gfe7f229.d20241230'
16+
__version_tuple__ = version_tuple = (0, 0, 7, 'dev325', 'gfe7f229.d20241230')

0 commit comments

Comments
 (0)