Skip to content

Commit

Permalink
Fix norecursedirs to ignore build directory (#80)
Browse files Browse the repository at this point in the history
* norecursedirs uses space separator, not comma.

* No need to pin `pytest` version.

* Re-introduce ceiling.
  • Loading branch information
willgraf authored Oct 11, 2021
1 parent 13ccc14 commit 5a1465e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ filterwarnings =
ignore::PendingDeprecationWarning

# Do not run tests in the build folder
norecursedirs= build, .ipynb_checkpoints
norecursedirs= build .ipynb_checkpoints

# PEP-8 The following are ignored:
# E501 line too long (82 > 79 characters)
Expand Down

0 comments on commit 5a1465e

Please sign in to comment.