Parcourir la source

Enable unit test coverage checking

Enables `cover` tox env when creating PRs.
Daniel Vincze il y a 2 ans
Parent
commit
e98aeab283
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 1 1
      .github/workflows/unit-tests.yml
  2. 1 1
      tox.ini

+ 1 - 1
.github/workflows/unit-tests.yml

@@ -31,5 +31,5 @@ jobs:
     - name: Run unit tests with tox
       shell: bash
       run: |
-        tox -e py3,pep8 -v
+        tox -e py3,pep8,cover -v
 

+ 1 - 1
tox.ini

@@ -1,6 +1,6 @@
 [tox]
 minversion = 4.0.2
-envlist = py3,pep8
+envlist = py3,pep8,cover
 skipsdist = True
 
 [testenv]