Skip to content

Commit 3ce8e29

Browse files
committed
missing coverage run
1 parent 412ab32 commit 3ce8e29

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/preflight_check.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ jobs:
1414
strategy:
1515
matrix:
1616
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
17-
1817
steps:
1918
- uses: actions/checkout@v2
2019
- name: Set up Python ${{ matrix.python-version }}
@@ -32,7 +31,7 @@ jobs:
3231
flake8 --exclude test,docs,examples .
3332
- name: Test with pytest
3433
run: |
35-
pytest --ignore=libnmap/test/test_backend_plugin_factory.py
34+
pytest --cov=libnmap/ --ignore=libnmap/test/test_backend_plugin_factory.py
3635
- name: Upload Coverage
3736
if: matrix.python-version != '2.7'
3837
env:

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py32, py38, flake8, pycodestyle, formatting, defusedxml
2+
envlist = py27, py32, py38, flake8, pycodestyle, formatting, defusedxml, coveralls
33

44
[testenv]
55
deps=pytest

0 commit comments

Comments
 (0)