Skip to content

Commit

Permalink
added config module to installed apps
Browse files Browse the repository at this point in the history
  • Loading branch information
David Esteves committed Aug 21, 2019
1 parent bd93801 commit 1cece40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions arctic/project_template/start/config/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"django.contrib.sessions",
"django.contrib.messages",
"django.contrib.staticfiles",
"config",
"arctic",
"dashboard",
]
Expand Down
4 changes: 1 addition & 3 deletions tests/test_commands/test_start_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,11 @@ def test_start_new_project():
"""
Test creating a new app with createapp bootstrap command.
"""
app_name = 'new_app'
app_name = 'newapp'
app_path = project_path + '/new_app'
os.mkdir(app_path)
apps_py_bin = os.path.join(app_path, 'apps.py')

env = os.environ.copy()

args = ['arctic', 'createapp', app_name, app_path]
retcode = call(args, env=env)

Expand Down

0 comments on commit 1cece40

Please sign in to comment.