Skip to content

Commit

Permalink
try disabling reset_db
Browse files Browse the repository at this point in the history
  • Loading branch information
mbthornton-lbl committed Dec 7, 2023
1 parent 8b881fd commit 28f5b43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_sched.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def test_submit(db, mock_api):
Test basic job creation
"""
init_test(db)
reset_db(db)
# reset_db(db)
load(db, "data_object_set.json")
load(db, "omics_processing_set.json")

Expand All @@ -105,7 +105,7 @@ def test_submit(db, mock_api):

def test_progress(db, mock_api):
init_test(db)
reset_db(db)
# reset_db(db)
db.jobs.delete_many({})
load(db, "data_object_set.json")
load(db, "omics_processing_set.json")
Expand Down Expand Up @@ -150,7 +150,7 @@ def test_progress(db, mock_api):

def test_multiple_versions(db, mock_api):
init_test(db)
reset_db(db)
# reset_db(db)
db.jobs.delete_many({})
load(db, "data_object_set.json")
load(db, "omics_processing_set.json")
Expand Down

0 comments on commit 28f5b43

Please sign in to comment.