File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -33,4 +33,4 @@ RUN mkdir /tests/results && chown -R test:test /tests/results/
33
33
USER test:test
34
34
ENV PYTHONPATH "${PYTHONPATH}:/tests/django/"
35
35
VOLUME /tests/django
36
- WORKDIR /tests/django
36
+ WORKDIR /tests/django/tests
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ x-base: &base
15
15
- ./oracle_entrypoint.sh:/oracle_entrypoint.sh
16
16
# Using yaml merging here overwrites the arrays. Simpler to just mount this in every service.
17
17
- ./oracle:/oracle
18
- entrypoint : bash -c "wait-for-it.sh -s -t 20 $${WAIT_FOR} -- python tests/ runtests.py $$@" --
18
+ entrypoint : bash -c "wait-for-it.sh -s -t 20 $${WAIT_FOR} -- python runtests.py $$@" --
19
19
20
20
x-postgres-base : &postgres-base
21
21
environment :
@@ -32,14 +32,14 @@ services:
32
32
<< : *base
33
33
environment :
34
34
- DJANGO_SETTINGS_MODULE=settings.test_sqlite
35
- entrypoint : python tests/ runtests.py
35
+ entrypoint : python runtests.py
36
36
depends_on :
37
37
- memcached
38
38
- memcached2
39
39
40
40
sqlite-gis :
41
41
<< : *base
42
- entrypoint : python tests/ runtests.py
42
+ entrypoint : python runtests.py
43
43
environment :
44
44
- DJANGO_SETTINGS_MODULE=settings.test_sqlite_gis
45
45
@@ -124,7 +124,7 @@ services:
124
124
environment :
125
125
- DJANGO_SETTINGS_MODULE=settings.test_oracle
126
126
- WAIT_FOR=oracle-db:1521
127
- entrypoint : /oracle_entrypoint.sh python tests/ runtests.py
127
+ entrypoint : /oracle_entrypoint.sh python runtests.py
128
128
depends_on :
129
129
- oracle-db
130
130
- memcached
You can’t perform that action at this time.
0 commit comments