about summary refs log tree commit diff
path: root/tests/unit/auth
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2026-05-21 13:32:56 -0500
committerFrederick Muriuki Muriithi2026-05-21 13:32:56 -0500
commit6568edd6bf616a0c17c5226f40b494a6b2967dad (patch)
treeccb986a3cec72061f490a15a154b299e12a13101 /tests/unit/auth
parentdaf8d4ec95bb5d4a7e0c108c023f64d6954d70df (diff)
downloadgn-auth-6568edd6bf616a0c17c5226f40b494a6b2967dad.tar.gz
Move migrations to top-level gn_auth package.
In preparation for migrating to pyproject.toml (from setup.py and
friends) we need to have only one top-level package. This will also
help in improving testing and checks down the line, since everything
will be relative to one single top-level directory.
Diffstat (limited to 'tests/unit/auth')
-rw-r--r--tests/unit/auth/test_migrations_init_data_in_resource_categories_table.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/auth/test_migrations_init_data_in_resource_categories_table.py b/tests/unit/auth/test_migrations_init_data_in_resource_categories_table.py
index c34a549..a32cacb 100644
--- a/tests/unit/auth/test_migrations_init_data_in_resource_categories_table.py
+++ b/tests/unit/auth/test_migrations_init_data_in_resource_categories_table.py
@@ -8,7 +8,7 @@ from gn_auth.migrations import get_migration, apply_migrations, rollback_migrati
 from tests.unit.auth.conftest import (
     apply_single_migration, rollback_single_migration, migrations_up_to)
 
-MIGRATION_PATH = "migrations/auth/20221108_04_CKcSL-init-data-in-resource-categories-table.py"
+MIGRATION_PATH = "gn_auth/migrations/auth/20221108_04_CKcSL-init-data-in-resource-categories-table.py"
 
 @pytest.mark.unit_test
 def test_apply_init_data(auth_testdb_path, auth_migrations_dir, backend):