summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/python-test.yml8
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml
index e06ce0a..a13efe3 100644
--- a/.github/workflows/python-test.yml
+++ b/.github/workflows/python-test.yml
@@ -20,7 +20,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- pip install pytest coverage
+ pip install pytest coverage pytest-cov six mock
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install -e .
- name: Test with pytest
@@ -43,9 +43,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- pip install pytest coverage
+ pip install pytest coverage pytest-cov six mock
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install -e .
- name: Test with pytest
run: |
- pytest tests
+ python src/tests/configobj_doctests.py
+ python -m configobj.validate
+ py.test -c setup.cfg --color=yes --cov=configobj --cov-report=term --cov-report=html --cov-report=xml