@@ -120,12 +120,12 @@ jobs:
120
120
# # Turns out the unittest-vibe-ut tried to connect to an actualy MySQL on 172.18.0.1 so it's not
121
121
# # actually a unit test at all. It's an integration test and should be pulled out from the main
122
122
# # codebase into a separate sub module
123
- - name : Run unittest-vibe-ut
123
+ - name : Run unittest-vibe
124
124
env :
125
125
MYSQL_PORT : ${{ job.services.mysql.ports[3306] }}
126
126
run : |
127
127
echo "host=localhost;port=$MYSQL_PORT;user=testuser;pwd=passw0rd;db=testdb" > testConnectionStr.txt
128
- dub run -c unittest-vibe-ut -- -t
128
+ dub run ":integration-tests"
129
129
130
130
- name : Build The Example Project
131
131
working-directory : ./examples/homePage
@@ -190,7 +190,7 @@ jobs:
190
190
MYSQL_PORT : ${{ job.services.mysql.ports[3306] }}
191
191
run : |
192
192
echo "host=localhost;port=$MYSQL_PORT;user=testuser;pwd=passw0rd;db=testdb" > testConnectionStr.txt
193
- dub run -c unittest-vibe-ut -- -t
193
+ dub run ":integration-tests"
194
194
195
195
- name : Build The Example Project
196
196
working-directory : ./examples/homePage
@@ -201,4 +201,4 @@ jobs:
201
201
env :
202
202
MYSQL_PORT : ${{ job.services.mysql.ports[3306] }}
203
203
run : |
204
- ./example "host=localhost;port=$MYSQL_PORT;user=testuser;pwd=passw0rd;db=testdb"
204
+ ./example "host=localhost;port=$MYSQL_PORT;user=testuser;pwd=passw0rd;db=testdb"
0 commit comments