From 3323078a05d57bf99adb16a71b69fcbcd48146ea Mon Sep 17 00:00:00 2001 From: Rob Dennis Date: Tue, 17 Jan 2023 16:38:34 -0500 Subject: #128, #203 - re-implement the move to a configobj package done in master --- .github/workflows/python-test.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to '.github') 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 -- cgit v1.2.1