diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2020-07-01 21:09:47 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-07-01 21:09:47 -0400 |
| commit | 4f1d15983b650c20dc6de48f6675c9ce84c0c3a9 (patch) | |
| tree | dcceb11301977399977f67c8f2bc97c8ca8ff05a | |
| parent | a4eb1127303fbe514ab8f77d6c3896614de02c5d (diff) | |
| download | external_python_setuptools-4f1d15983b650c20dc6de48f6675c9ce84c0c3a9.tar.gz external_python_setuptools-4f1d15983b650c20dc6de48f6675c9ce84c0c3a9.tar.bz2 external_python_setuptools-4f1d15983b650c20dc6de48f6675c9ce84c0c3a9.zip | |
Acknowledge and ignore warning about TestDistribution (it's a "test" distribution, not a "test of distributions").
| -rw-r--r-- | pytest.ini | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 00000000..3e01b439 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,4 @@ +[pytest] +filterwarnings= + # acknowledge that TestDistribution isn't a test + ignore:cannot collect test class 'TestDistribution' |
