Skip to content

Commit fbec6d9

Browse files
authored
Update .travis.yml
1 parent 4609788 commit fbec6d9

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

.travis.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,28 @@ matrix:
1313
- "0.10"
1414
script:
1515
- cd js && npm install && npm test
16+
- language: python
17+
python: 3.4
18+
script:
19+
- wget -O install.sh "https://github.com/bazelbuild/bazel/releases/download/0.5.3/bazel-0.5.3-installer-linux-x86_64.sh"
20+
- chmod +x install.sh
21+
- ./install.sh -user && rm -f install.sh
22+
- blaze test --test_output=all python:openlocationcode_test
23+
- language: ruby
24+
rvm: 2.2
25+
script:
26+
- gem install test-unit
27+
- cd ruby && ruby test/plus_codes_test.rb
1628
- language: rust
1729
script:
1830
- cd rust/
1931
- cargo build --verbose --all
2032
- cargo test --verbose --all
2133

2234
# Define the list of directories to execute tests in.
23-
env:
24-
- TEST_DIR=ruby
25-
- TEST_DIR=python
35+
#env:
36+
# - TEST_DIR=ruby
37+
# - TEST_DIR=python
2638

2739
# Test script to run. This is called once for each TEST_DIR value above.
28-
script: ./run_tests.sh
40+
#script: ./run_tests.sh

0 commit comments

Comments
 (0)