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:
parent
322ce57062
commit
fa3b761054
3 changed files with 2 additions and 21 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue