Skip to content

Commit efa5f04

Browse files
authored
Merge pull request #106 from benjaoming/missing-migration-fix
Invoke the "not" shell command differently
2 parents 6f58f01 + f67a5ea commit efa5f04

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
# Tox
44
.cache
5+
coverage.xml
56

67
# C extensions
78
*.so

runtests.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
},
5151
],
5252
USE_TZ=True,
53-
SOUTH_TESTS_MIGRATE=True,
5453
MIDDLEWARE=[
5554
'django.middleware.common.CommonMiddleware',
5655
'django.contrib.sessions.middleware.SessionMiddleware',

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ envlist = {py35,py36,py37,py38,py39,pypy}-django{22,30,31,32}
66
passenv = CODECOV_TOKEN
77

88
whitelist_externals=
9-
sh
9+
bash
1010

1111
commands =
12-
sh -c '! python test-project/manage.py makemigrations --dry-run --exit --noinput'
12+
bash -c '! python test-project/manage.py makemigrations --dry-run --exit --noinput'
1313
python -W all:"":"":"":0 -m coverage run --source=django_nyt runtests.py
1414
codecov
1515

0 commit comments

Comments
 (0)