Skip to content

Commit

Permalink
ci: testing backend
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Bandeira <[email protected]>
  • Loading branch information
Vitor Bandeira committed Jul 1, 2024
1 parent f8d87d5 commit eaf85a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions jenkins/public_tests_all.Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@Library('utils@main') _
@Library('utils@dev') _

node {

Expand Down Expand Up @@ -30,7 +30,7 @@ node {

stage('Run Tests') {
Map tasks = [failFast: false];
def test_slugs = getTestSlugs("all");
def test_slugs = getTestSlugs("dev");
for (test in test_slugs) {
def currentSlug = test; // copy needed to correctly pass args to runTests
tasks["${test}"] = {
Expand Down
4 changes: 2 additions & 2 deletions jenkins/public_tests_small.Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@Library('utils@main') _
@Library('utils@dev') _

node {

Expand Down Expand Up @@ -30,7 +30,7 @@ node {

stage('Run Tests') {
Map tasks = [failFast: false];
def test_slugs = getTestSlugs("small");
def test_slugs = getTestSlugs("dev");
for (test in test_slugs) {
def currentSlug = test; // copy needed to correctly pass args to runTests
tasks["${test}"] = {
Expand Down

0 comments on commit eaf85a9

Please sign in to comment.