File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -262,10 +262,15 @@ def pytest_sessionstart(session: Session) -> None:
262262
263263 # Build fixture database after downloading fixtures
264264 if os .getenv ("EELS_USE_FIXTURE_DB" ) == "1" :
265- print ("Building fixture database..." )
265+ print ("Building fixture database..." , flush = True )
266+ import sys
267+
268+ sys .stdout .flush ()
266269 from .build_fixture_db import main as build_db
267270
268271 build_db ()
272+ print ("Database build complete!" , flush = True )
273+ sys .stdout .flush ()
269274
270275
271276def pytest_sessionfinish (session : Session , exitstatus : int ) -> None :
Original file line number Diff line number Diff line change @@ -66,6 +66,8 @@ commands =
6666
6767[testenv:json_infra]
6868description = Run the spec against released test fixtures
69+ passenv =
70+ EELS_USE_FIXTURE_DB
6971commands =
7072 pytest \
7173 -m " not slow" \
You can’t perform that action at this time.
0 commit comments