Skip to content

Commit

Permalink
disabled online/live tests in automated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jkowalleck committed Jun 20, 2020
1 parent 95327c4 commit 132d82e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ jobs:
python -m pip install --upgrade pip
python -m pip install --upgrade 'setuptools>=40' 'tox>=3.14'
- name: Test nichtparasoup
run: python -m tox -r -e py3-coverageXML
# since the version got retired, we dont need online tests
run: python -m tox -r -e py3-coverageXML -- -m "not online"
- name: "Test examples::nichtparasoup-imagecrawler-plugin"
run: python -m tox -r -e py3 -c examples/nichtparasoup-imagecrawler-plugin/
- name: Upload coverage to Codecov
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ jobs:
python -m pip install --upgrade pip
python -m pip install --upgrade 'setuptools>=40' 'tox>=3.14'
- name: Test nichtparasoup
run: python -m tox -r -e py3
# since the version got retired, we dont need online tests
run: python -m tox -r -e py3 -- -m "not online"
- name: "Test examples::nichtparasoup-imagecrawler-plugin"
run: python -m tox -r -e py3 -c examples/nichtparasoup-imagecrawler-plugin/
publish:
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ commands =
{envpython} --version
{envpython} -m flake8
{envpython} -m mypy
{envpython} -m coverage run -m pytest -v
{envpython} -m coverage run -m pytest -v {posargs}
coverageReport: {envpython} -m coverage report -m
coverageXML: {envpython} -m coverage xml -i

Expand Down

0 comments on commit 132d82e

Please sign in to comment.