diff options
| author | adamjanovsky | 2021-12-27 12:55:19 +0100 |
|---|---|---|
| committer | GitHub | 2021-12-27 12:55:19 +0100 |
| commit | ed2dd6ffcc04480772dd5ca29112e41eb683586f (patch) | |
| tree | 0aad2701839d3df55cc7ccdd95a3290823c6d98c /pyproject.toml | |
| parent | b96168064c98f047c5851346f7ae1c018e0aa9b7 (diff) | |
| parent | 3338b04b6c95a26ca0a66c3764afb3efefce0dce (diff) | |
| download | sec-certs-ed2dd6ffcc04480772dd5ca29112e41eb683586f.tar.gz sec-certs-ed2dd6ffcc04480772dd5ca29112e41eb683586f.tar.zst sec-certs-ed2dd6ffcc04480772dd5ca29112e41eb683586f.zip | |
Merge pull request #150 from crocs-muni/feat/slots
Add __slots__ to CPE and CVE classes.
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 031110f1..53b1f9bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,4 +26,10 @@ skip=["certsvenv", "build"] [tool.mypy] plugins = ["numpy.typing.mypy_plugin"] ignore_missing_imports = true -exclude="build/"
\ No newline at end of file +exclude="build/" + +[tool.pytest.ini_options] +markers = [ + "slow: marks tests as slow (deselect with '-m \"not slow\"')" +] +addopts = "--cov sec_certs" |
