Skip to content

Commit 681e781

Browse files
authored
Merge pull request #116 from kraken-tech/fix-test-dbs-and-gitignore
Fix test dbs and gitignore
2 parents 06ab13f + 90b1cdf commit 681e781

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ dist/
1515
# Testing
1616
.pytest_cache/
1717
.tox/
18+
.coverage*
1819

1920
# Environments
2021
.python-version

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ authors = [
2121
]
2222
maintainers = [
2323
{name = "Charlie Denton", email = "[email protected]"},
24-
{name = "Lily Acorn", email = "[email protected]"},
24+
{name = "Lily", email = "[email protected]"},
2525
{name = "Samuel Searles-Bryant", email = "[email protected]"},
2626
]
2727

tests/settings.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,8 @@
55

66

77
DATABASES = {
8-
"default": env.dj_db_url(
9-
"DEFAULT_DATABASE_URL", default="postgres://localhost/subatomic"
10-
),
11-
"other": env.dj_db_url(
12-
"OTHER_DATABASE_URL", default="postgres://localhost/subatomic_other"
13-
),
8+
"default": env.dj_db_url("DEFAULT_DATABASE_URL", default="postgres:///subatomic"),
9+
"other": env.dj_db_url("OTHER_DATABASE_URL", default="postgres:///subatomic_other"),
1410
}
1511
USE_TZ = True
1612

0 commit comments

Comments
 (0)