Skip to content

Commit

Permalink
fix: make test command
Browse files Browse the repository at this point in the history
Unit test command was failing because manage.py was pointing to an
incorrect module by default.
  • Loading branch information
regisb committed Oct 17, 2024
1 parent 8acaa21 commit ff17750
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import sys

if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "edxsearch.settings")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")

from django.core.management import execute_from_command_line

Expand Down

0 comments on commit ff17750

Please sign in to comment.