rename postgres test file; add pytest section to pyproject.toml

This commit is contained in:
Helmut Merz 2024-03-11 17:15:02 +01:00
parent 960092b4a8
commit fd6006899e
3 changed files with 7 additions and 0 deletions

2
.gitignore vendored
View file

@ -7,6 +7,8 @@
*.sublime-project
*.sublime-workspace
*.ropeproject
.env
.pytest.ini
*#*#
*.#*
__pycache__

View file

@ -27,3 +27,8 @@ test = ["pytest"]
[tool.setuptools]
packages = ["scopes"]
[tool.pytest.ini_options]
addopts = "-vv"
python_files = "test_standard.py" # default: run only `standard` tests
# use .pytest.ini file with `python_files = test_*.py` to run all tests