Skip to content

Commit

Permalink
chore(ci): explicitly name integration test jobs (#2340)
Browse files Browse the repository at this point in the history
  • Loading branch information
faustbrian authored Mar 29, 2019
1 parent f358745 commit 5ef7ce8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
24 changes: 12 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ jobs:
- run:
name: Codecov
command: ./node_modules/.bin/codecov
test-node10-0:
test-node10-integration-0:
working_directory: ~/core
environment:
CORE_DB_DATABASE: core_unitnet
Expand Down Expand Up @@ -425,7 +425,7 @@ jobs:
- run:
name: Codecov
command: ./node_modules/.bin/codecov
test-node11-0:
test-node11-integration-0:
working_directory: ~/core
environment:
CORE_DB_DATABASE: core_unitnet
Expand Down Expand Up @@ -510,7 +510,7 @@ jobs:
- run:
name: Codecov
command: ./node_modules/.bin/codecov
test-node10-1:
test-node10-integration-1:
working_directory: ~/core
environment:
CORE_DB_DATABASE: core_unitnet
Expand Down Expand Up @@ -625,7 +625,7 @@ jobs:
- run:
name: Codecov
command: ./node_modules/.bin/codecov
test-node10-2:
test-node10-integration-2:
working_directory: ~/core
environment:
CORE_DB_DATABASE: core_unitnet
Expand Down Expand Up @@ -734,7 +734,7 @@ jobs:
- run:
name: Codecov
command: ./node_modules/.bin/codecov
test-node11-1:
test-node11-integration-1:
working_directory: ~/core
environment:
CORE_DB_DATABASE: core_unitnet
Expand Down Expand Up @@ -849,7 +849,7 @@ jobs:
- run:
name: Codecov
command: ./node_modules/.bin/codecov
test-node11-2:
test-node11-integration-2:
working_directory: ~/core
environment:
CORE_DB_DATABASE: core_unitnet
Expand Down Expand Up @@ -966,9 +966,9 @@ workflows:
- test-node11-unit
- test-node10-functional
- test-node11-functional
- test-node10-0
- test-node11-0
- test-node10-1
- test-node10-2
- test-node11-1
- test-node11-2
- test-node10-integration-0
- test-node11-integration-0
- test-node10-integration-1
- test-node10-integration-2
- test-node11-integration-1
- test-node11-integration-2
6 changes: 3 additions & 3 deletions .circleci/configTemplate.json
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@
}
]
},
"test-node10-0": {
"test-node10-integration-0": {
"working_directory": "~/core",
"environment": {
"CORE_DB_DATABASE": "core_unitnet",
Expand Down Expand Up @@ -446,7 +446,7 @@
}
]
},
"test-node11-0": {
"test-node11-integration-0": {
"working_directory": "~/core",
"environment": {
"CORE_DB_DATABASE": "core_unitnet",
Expand Down Expand Up @@ -539,7 +539,7 @@
"workflows": {
"version": 2,
"build_and_test": {
"jobs": ["test-node10-0", "test-node11-0"]
"jobs": ["test-node10-integration-0", "test-node11-integration-0"]
}
}
}

0 comments on commit 5ef7ce8

Please sign in to comment.