Skip to content
Prev Previous commit
Next Next commit
Set proper location for stats file in tests
  • Loading branch information
robgolding committed Jul 1, 2019
commit f0808a8ebb3f3d62d04555480f31df8f1434fd24
4 changes: 2 additions & 2 deletions tests/app/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,12 @@
'DEFAULT': {
'CACHE': False,
'BUNDLE_DIR_NAME': 'bundles/',
'STATS_FILE': os.path.join(BASE_DIR, 'webpack-stats.json'),
'STATS_FILE': 'webpack-stats.json',
},
'APP2': {
'CACHE': False,
'BUNDLE_DIR_NAME': 'bundles/',
'STATS_FILE': os.path.join(BASE_DIR, 'webpack-stats-app2.json'),
'STATS_FILE': 'webpack-stats-app2.json',
}
}

Expand Down