summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Dennis <robd@services-in.xr>2023-01-17 16:40:38 -0500
committerRob Dennis <robd@services-in.xr>2023-01-17 16:40:38 -0500
commita2fdf3badfd3e8f13b98bba3bea34d5a18ae9b2e (patch)
tree4ddea11d821f88050243ab2ce0e419071c25aee6
parent3323078a05d57bf99adb16a71b69fcbcd48146ea (diff)
downloadconfigobj-git-a2fdf3badfd3e8f13b98bba3bea34d5a18ae9b2e.tar.gz
#128 - update tests with new way to run it
-rw-r--r--.github/workflows/python-test.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml
index a13efe3..2caa6ff 100644
--- a/.github/workflows/python-test.yml
+++ b/.github/workflows/python-test.yml
@@ -25,7 +25,10 @@ jobs:
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
+
build-on-legacy:
runs-on: ubuntu-20.04