File tree Expand file tree Collapse file tree 3 files changed +8
-12
lines changed Expand file tree Collapse file tree 3 files changed +8
-12
lines changed Original file line number Diff line number Diff line change 68
68
69
69
- name : Run integration tests
70
70
run : |
71
- docker compose up -d --remove-orphans --wait --no-build \
72
- server1 \
73
- server2 \
74
- server3 \
75
- server4 \
76
- testkit_backend
77
-
78
- docker compose run --rm testkit ./testkit.sh
71
+ docker compose up -d --remove-orphans --wait --no-build testkit_backend neo4j
72
+ docker compose up testkit
Original file line number Diff line number Diff line change @@ -119,6 +119,7 @@ services:
119
119
120
120
testkit :
121
121
image : python:3.13
122
+ command : ./testkit.sh
122
123
volumes :
123
124
- .:/opt/project
124
125
working_dir : /opt/project/testkit-backend
@@ -131,6 +132,9 @@ services:
131
132
TEST_DRIVER_NAME : php
132
133
TEST_DRIVER_REPO : /opt/project
133
134
TEST_BACKEND_HOST : testkit_backend
135
+ TEST_STUB_HOST : testkit
136
+ depends_on :
137
+ - testkit_backend
134
138
135
139
testkit_backend :
136
140
<< : *common-php
@@ -141,7 +145,5 @@ services:
141
145
- neo4j
142
146
extra_hosts :
143
147
- " host.docker.internal:host-gateway"
144
- depends_on :
145
- - neo4j
146
148
ports :
147
149
- " 9876:9876"
Original file line number Diff line number Diff line change @@ -69,8 +69,8 @@ python3 -m unittest tests.neo4j.test_session_run.TestSessionRun.test_long_string
69
69
python3 -m unittest tests.neo4j.test_direct_driver.TestDirectDriver.test_custom_resolver|| EXIT_CODE=1
70
70
python3 -m unittest tests.neo4j.test_direct_driver.TestDirectDriver.test_fail_nicely_when_using_http_port|| EXIT_CODE=1
71
71
python3 -m unittest tests.neo4j.test_direct_driver.TestDirectDriver.test_supports_multi_db|| EXIT_CODE=1
72
- python3 -m unittest tests.neo4j.test_direct_driver.TestDirectDriver.test_multi_db_non_existing
73
- python3 -m unittest tests.neo4j.test_direct_driver.TestDirectDriver.test_multi_db|| EXIT_CODE=1
72
+ python3 -m unittest tests.neo4j.test_direct_driver.TestDirectDriver.test_multi_db_non_existing || EXIT_CODE=1
73
+ python3 -m unittest tests.neo4j.test_direct_driver.TestDirectDriver.test_multi_db || EXIT_CODE=1
74
74
python3 -m unittest tests.neo4j.test_direct_driver.TestDirectDriver.test_multi_db_various_databases|| EXIT_CODE=1
75
75
# #
76
76
# ##test_summary
You can’t perform that action at this time.
0 commit comments