diff options
author | Frederick Muriuki Muriithi | 2022-11-08 13:50:03 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-11-08 13:50:03 +0300 |
commit | 11e1ec3f5aaa2489b2e0b2f9f69f6a13c6aaa7ff (patch) | |
tree | 50035a647ab31e0028ecf9d3ffd7f37a1dad68cd /gn3 | |
parent | 83c476a6738042e0ce35af07eb515d0a169c54ba (diff) | |
download | genenetwork3-11e1ec3f5aaa2489b2e0b2f9f69f6a13c6aaa7ff.tar.gz |
Tests: Generalise testing 'CREATE TABLE' migrations
* gn3/settings.py: Omit trailing slash
* tests/unit/auth/test_create_table_migrations.py: Generalise testing
migrations that create tables.
* tests/unit/auth/test_create_user_credentials_table.py: delete
* tests/unit/auth/test_migration_create_users_table.py: delete
Diffstat (limited to 'gn3')
-rw-r--r-- | gn3/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/settings.py b/gn3/settings.py index 062c1e6..5fec562 100644 --- a/gn3/settings.py +++ b/gn3/settings.py @@ -64,6 +64,6 @@ ROUND_TO = 10 MULTIPROCESSOR_PROCS = 6 # Number of processes to spawn -AUTH_MIGRATIONS = "migrations/auth/" +AUTH_MIGRATIONS = "migrations/auth" AUTH_DB = os.environ.get( "AUTH_DB", f"{os.environ.get('HOME')}/genenetwork/gn3_files/db/auth.db") |