File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -90,13 +90,13 @@ pipeline {
90
90
steps {
91
91
// Bring up a stack
92
92
sh ' docker-compose up -d fullstack-sqlite'
93
- sh ' ./scripts/wait-healthy $(docker-compose ps -q fullstack-sqlite) 120'
93
+ sh ' ./scripts/wait-healthy $(docker-compose ps --all - q fullstack-sqlite) 120'
94
94
95
95
// Run tests
96
96
sh ' rm -rf test/results'
97
97
sh ' docker-compose up cypress-sqlite'
98
98
// Get results
99
- sh ' docker cp -L "$(docker-compose ps -q cypress-sqlite):/test/results" test/'
99
+ sh ' docker cp -L "$(docker-compose ps --all - q cypress-sqlite):/test/results" test/'
100
100
}
101
101
post {
102
102
always {
@@ -116,13 +116,13 @@ pipeline {
116
116
steps {
117
117
// Bring up a stack
118
118
sh ' docker-compose up -d fullstack-mysql'
119
- sh ' ./scripts/wait-healthy $(docker-compose ps -q fullstack-mysql) 120'
119
+ sh ' ./scripts/wait-healthy $(docker-compose ps --all - q fullstack-mysql) 120'
120
120
121
121
// Run tests
122
122
sh ' rm -rf test/results'
123
123
sh ' docker-compose up cypress-mysql'
124
124
// Get results
125
- sh ' docker cp -L "$(docker-compose ps -q cypress-mysql):/test/results" test/'
125
+ sh ' docker cp -L "$(docker-compose ps --all - q cypress-mysql):/test/results" test/'
126
126
}
127
127
post {
128
128
always {
You can’t perform that action at this time.
0 commit comments