Updates conftest fixtures so they do not autorun

The modules that need to run either bitcoind or the api do now reference to the fixture in the first test that needs it. Since the fixtures are definexd session-wise the rest of the modules will have access to them from that point on.
This commit is contained in:
Sergi Delgado Segura
2019-10-14 13:19:54 +01:00
parent d35b9c13c4
commit d43ab76220
6 changed files with 14 additions and 8 deletions

View File

@@ -70,7 +70,7 @@ def add_appointment(appointment):
return r
def test_add_appointment(new_appointment):
def test_add_appointment(run_api, run_bitcoind, new_appointment):
# Properly formatted appointment
r = add_appointment(new_appointment)
assert (r.status_code == 200)