diff options
author | Erik Skultety <eskultet@redhat.com> | 2023-04-27 12:20:51 +0200 |
---|---|---|
committer | Daniel P. Berrangé <berrange@redhat.com> | 2023-04-28 10:05:23 +0000 |
commit | 9f2ce838fcb65721534b5e4201a260c1f03030f1 (patch) | |
tree | 891424220a2eab8ca7ef7379d7720fb98e8b65c0 | |
parent | c49e81e0f28ae05a4ec821e68bf2960026ab0aa0 (diff) | |
download | libvirt-ci-9f2ce838fcb65721534b5e4201a260c1f03030f1.zip libvirt-ci-9f2ce838fcb65721534b5e4201a260c1f03030f1.tar.gz libvirt-ci-9f2ce838fcb65721534b5e4201a260c1f03030f1.tar.bz2 |
Add a pytest.ini
This should allow us to stop running pytest as
python3 -m pytest
because of PYTHONPATH mangling and instead be able to invoke pytest
like everyone else simply as
pytest
Signed-off-by: Erik Skultety <eskultet@redhat.com>
-rw-r--r-- | pytest.ini | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 0000000..a635c5c --- /dev/null +++ b/pytest.ini @@ -0,0 +1,2 @@ +[pytest] +pythonpath = . |