Skip to content

Commit 3ebf0b4

Browse files
committed
Rename stages
1 parent 34380fb commit 3ebf0b4

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

.travis.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
# Add additional stages in the order of execution here, and then under the job:include: key
3-
# dist: "focal" # Ubuntu 20.04
3+
dist: "focal" # Ubuntu 20.04
44
stages:
5-
- "lint"
6-
- "build"
7-
- "test"
5+
- name: "Lint"
6+
- name: "Build"
7+
- name: "Unit Test"
88

99
language: "python"
1010
python:
1111
- "3.6"
1212
- "3.7"
13-
- "3.8"
14-
- "3.9"
13+
# - "3.8"
14+
# - "3.9"
1515

1616
services:
1717
- "docker"
@@ -23,7 +23,7 @@ env:
2323

2424
jobs:
2525
include:
26-
- stage: "lint"
26+
- stage: "Lint"
2727
env:
2828
- "INVOKE_LOCAL=True"
2929
before_script:
@@ -38,15 +38,15 @@ jobs:
3838
- "invoke pylint"
3939
python: "3.7"
4040

41-
- stage: "build"
41+
- stage: "Build"
4242
before_script:
4343
- "pip install invoke poetry toml"
4444
script:
4545
- "invoke build-image --nocache"
4646
- "poetry build"
4747
python: "3.7"
4848

49-
- stage: "test"
49+
- stage: "Unit Test"
5050
before_script:
5151
- "pip install invoke poetry toml"
5252
- "poetry install"

0 commit comments

Comments
 (0)