Remove pytest-randomly from the dev dependencies

- problem: because of the randomization of test cases, every once in a
  while, the schema holding the test db already exists and cannot be
  created a second time (background: we run all tests against a db
  created with `metadate.create_all()` by SQLAlchemy at once and
  a db created by running all incremental Alchemy migration scripts)
- quick fix: possible, we could find a way to run all tests against
  one of the two test db's in random order and then against the other
  => in the interest of time, we simply do not randomize the test cases
This commit is contained in:
Alexander Hess 2021-06-02 16:27:04 +02:00
commit fa3b761054
Signed by: alexander
GPG key ID: 344EA5AB10D868E0
3 changed files with 2 additions and 21 deletions

View file

@ -86,7 +86,6 @@ pytest = "^6.0.1"
pytest-cov = "^2.10.0"
pytest-env = "^0.6.2"
pytest-mock = "^3.5.1"
pytest-randomly = "^3.5.0"
xdoctest = { version="^0.13.0", extras=["optional"] }
# Documentation