put requests workflow tests behind a feature toggle

This commit is contained in:
dandds
2019-01-07 16:03:40 -05:00
parent 3612fcca6c
commit 08806eed24
18 changed files with 129 additions and 33 deletions

View File

@@ -147,3 +147,8 @@ def extended_financial_verification_data(pdf_upload):
def queue():
yield atst_queue
atst_queue.get_queue().empty()
pytest.mark.requests_workflow = pytest.mark.skipif(
not make_config().get("REQUESTS_WORKFLOW"), reason="requests workflow is deprecated"
)