8000 Pytest documentation + build tweaks by QuLogic · Pull Request #8026 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Pytest documentation + build tweaks #8026

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Feb 20, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Document markers used by pytest.
This may or may not become a requirement in the future.
  • Loading branch information
QuLogic committed Feb 16, 2017
commit 9d36e988da3f066b0a3d83a70a927e43313b7797
6 changes: 6 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
[pytest]
norecursedirs = .git build ci dist doc extern lib/mpl_examples release tools unit venv
python_files = test_*.py

markers =
backend: Set alternate Matplotlib backend temporarily.
network: Mark a test that uses the network.
style: Set alternate Matplotlib style temporarily.

pep8ignore =
* E111 E114 E115 E116 E121 E122 E123 E124 E125 E126 E127 E128 E129 E131 E226 E240 E241 E242 E243 E244 E245 E246 E247 E248 E249 E265 E266 E704 W503

Expand Down
0