summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorRob Dennis <robd@services-in.xr>2023-01-17 16:38:34 -0500
committerRob Dennis <robd@services-in.xr>2023-01-17 16:38:34 -0500
commit3323078a05d57bf99adb16a71b69fcbcd48146ea (patch)
tree3c7e56e41aa4d6bbd682e011b0b94043ac27c011 /.github
parent178ba90da21998968acb18cf02e7449741ddac4e (diff)
downloadconfigobj-git-3323078a05d57bf99adb16a71b69fcbcd48146ea.tar.gz
#128, #203 - re-implement the move to a configobj package done in master
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