Skip to content

Commit 8fb8d7a

Browse files
committed
exclude certain files from coverage and rm dead code
1 parent d23efdf commit 8fb8d7a

File tree

4 files changed

+5
-30
lines changed

4 files changed

+5
-30
lines changed

.coveragerc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[run]
2+
omit = ffsubsync/ffsubsync_gui.py, ffsubsync/_version.py, ffsubsync/version.py

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ jobs:
4545
flake8 . --exit-zero
4646
- name: Run unit tests with pytest
4747
run: |
48-
pytest --cov-report= --cov=ffsubsync -v -m 'not integration' tests/
48+
pytest --cov-config=.coveragerc --cov-report= --cov=ffsubsync -v -m 'not integration' tests/
4949
- name: Run integration tests with pytest
5050
if: matrix.os == 'ubuntu-latest'
5151
run: |
52-
INTEGRATION=1 pytest --cov-report=xml:cov.xml --cov=ffsubsync -v -m 'integration' tests/
52+
INTEGRATION=1 pytest --cov-config=.coveragerc --cov-report=xml:cov.xml --cov=ffsubsync -v -m 'integration' tests/
5353
- name: Upload coverage report
5454
if: matrix.os == 'ubuntu-latest'
5555
uses: codecov/codecov-action@v1

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ deploy: build
1414
./scripts/deploy.sh
1515

1616
check:
17-
INTEGRATION=1 pytest --cov=ffsubsync
17+
INTEGRATION=1 pytest --cov-config=.coveragerc --cov=ffsubsync
1818

1919
test: check
2020
tests: check

ffsubsync/suboffset.py

-27
This file was deleted.

0 commit comments

Comments
 (0)