tests/e2e: don't run e2e tests randomly for now

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-11-23 00:32:24 +01:00
parent 0e413acd61
commit e32d4f0095
1 changed files with 3 additions and 0 deletions

View File

@ -40,5 +40,8 @@ class PytestTestRunner: # pragma: no cover
if self.keepdb:
argv.append("--reuse-db")
if any("tests/e2e" in label for label in test_labels):
argv.append("-pno:randomly")
argv.extend(test_labels)
return pytest.main(argv)