Skip to content

Commit

Permalink
fix python print
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeitsperre committed Sep 12, 2023
1 parent 98a0858 commit 15dc72b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ commands =
description = Run tests with pytest under {basepython}, preventing socket connections (except for unix sockets for async support)
commands:
prefetch: xclim prefetch_testing_data
python -c 'print("""Running offline tests with positional arguments: {posargs:-m \"not requires_internet\"}. This can be overridden with: tox -e offline -- -m \"some other marker statement\"""")'
pytest --disable-socket --allow-unix-socket {posargs:-m "not requires_internet"}
python -c 'print("""Running offline tests with positional arguments. These can be overridden with: tox -e offline -- -m \"some other marker statement\"""")'
pytest --disable-socket --allow-unix-socket {posargs:-m 'not requires_internet'}
allowlist_externals =
xclim

Expand Down Expand Up @@ -115,7 +115,7 @@ commands_pre =
sbck: python -m pip install sbck
python -m pip list
xclim show_version_info
python -m pip check
; python -m pip check
commands =
doctest: pytest --no-cov --rootdir=tests/ --xdoctest xclim
pytest {posargs}
Expand Down

0 comments on commit 15dc72b

Please sign in to comment.