Skip to content

Commit 0724a5f

Browse files
committed
Update the CI configuration
Add testing on Python v3.7. Use the `script/ci` script for CI builds. Temporarily disable the CI script setup and build steps.
1 parent 916b935 commit 0724a5f

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ python:
44
- "2.7"
55
- "3.5"
66
- "3.6"
7-
install: "make ci-init"
8-
script: "make ci"
7+
- "3.7"
8+
install: "script/setup"
9+
script: "script/ci"
910
cache: pip

script/ci

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@ set -e
99
cd "$(dirname "$0")/.."
1010

1111

12-
# Initialize the CI environment
13-
echo "==> Initializing the CI environment"
14-
15-
16-
# Setup the project
17-
script/setup --dev
12+
## Initialize the CI environment
13+
#echo "==> Initializing the CI environment"
14+
#
15+
#
16+
## Setup the project
17+
#script/setup --dev
1818

1919

2020
# Run the test suite
2121
script/test
2222

2323

24-
# Build the product(s)
25-
script/build
26-
27-
28-
# Push the builds
24+
## Build the product(s)
25+
#script/build
26+
#
27+
#
28+
## Push the builds

0 commit comments

Comments
 (0)