-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop role service DB schema before tests
- Loading branch information
Showing
2 changed files
with
24 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import psycopg2 | ||
import layman_settings as settings | ||
|
||
|
||
def main(): | ||
print(f"Drop Layman role service DB schema.") | ||
|
||
# Layman DB | ||
conn = psycopg2.connect(**settings.PG_CONN) | ||
conn.autocommit = True | ||
cur = conn.cursor() | ||
cur.execute(f""" | ||
DROP SCHEMA IF EXISTS "{settings.LAYMAN_INTERNAL_ROLE_SERVICE_SCHEMA}" CASCADE; | ||
""") | ||
conn.commit() | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |