Skip to content

Commit 3e4ee99

Browse files
committed
Fix build
1 parent 346d859 commit 3e4ee99

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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
4950
after_success:
5051
# Submit results to Coveralls.io.
5152
## Coveralls has a requirement for requests >= 1.0.0, so we install it after

conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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
)
279 KB
Binary file not shown.

gmn/src/d1_gmn/settings_test.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,3 +140,7 @@
140140
},
141141
}
142142
}
143+
144+
FIXTURE_DIRS = (
145+
d1_common.util.abs_path('./fixtures'),
146+
)

0 commit comments

Comments
 (0)