revert to calling calling tests test

This commit is contained in:
Francisco Schulz 2023-02-01 16:14:57 +01:00
parent 2835b7c2c9
commit 1c4c24c37e
3 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ python scripts/pyinfra_mock.py /path/to/a/pdf
Run for example this command to execute all tests and get a coverage report:
```bash
coverage run -m pytest tests --tb=native -q -s -vvv -x && coverage combine && coverage report -m
coverage run -m pytest test --tb=native -q -s -vvv -x && coverage combine && coverage report -m
```
After having built the service container as specified above, you can also run tests in a container as follows:

View File

@ -42,7 +42,7 @@ docxbuilder = "^1.2.0"
norecursedirs = "incl"
filterwarnings = ["ignore:.*:DeprecationWarning", ]
testpaths = [
"tests",
"test",
]

View File

@ -14,4 +14,4 @@ DATA_DIR = PACKAGE_ROOT_DIR / "data"
MLRUNS_DIR = str(DATA_DIR / "mlruns")
TEST_DATA_DIR = "../" / PACKAGE_ROOT_DIR / "tests" / "data"
TEST_DATA_DIR = "../" / PACKAGE_ROOT_DIR / "test" / "data"