File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed
Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,8 @@ script:
4545 # Create GMN template database (must be done in a single threaded run)
4646 # - pytest --collect-only
4747 # Run tests in parallel, using as many threads as are supported by Travis
48- - pytest --cov=. --cov-report=term --cov-report=xml -n auto
48+ - pytest --cov=. --cov-report=term --cov-report=xml
49+ # -n auto
4950after_success :
5051 # Submit results to Coveralls.io.
5152 # # Coveralls has a requirement for requests >= 1.0.0, so we install it after
Original file line number Diff line number Diff line change @@ -499,8 +499,9 @@ def db_populate_by_json(db_key):
499499 logging .debug ('db_populate_by_json() {}' .format (db_key ))
500500 django .core .management .call_command (
501501 'loaddata' ,
502- d1_test . sample . get_path ( 'db_fixture.json.bz2' ) ,
502+ 'db_fixture' ,
503503 database = db_key ,
504+ # d1_test.sample.get_path('db_fixture.json.bz2'),
504505 # verbosity=0,
505506 # commit=False,
506507 )
Original file line number Diff line number Diff line change 140140 },
141141 }
142142}
143+
144+ FIXTURE_DIRS = (
145+ d1_common .util .abs_path ('./fixtures' ),
146+ )
You can’t perform that action at this time.
0 commit comments