Skip to content

Commit

Permalink
Fix PytestDeprecationWarning
Browse files Browse the repository at this point in the history
Current test warns:

    PytestDeprecationWarning: The --strict option is deprecated, use --strict-markers instead.

Marked as deprecated in pytest-dev/pytest#7985
Released in pytest 6.2.0

Signed-off-by: Mike Fiedler <miketheman@gmail.com>
  • Loading branch information
miketheman committed Nov 26, 2021
1 parent 38c39b2 commit 6d787ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/tests
Expand Up @@ -33,6 +33,6 @@ fi
set -x

# Actually run our tests.
python -m coverage run -m pytest --strict $COMMAND_ARGS
python -m coverage run -m pytest --strict-markers $COMMAND_ARGS
python -m coverage html
python -m coverage report -m --fail-under 100

0 comments on commit 6d787ba

Please sign in to comment.