File tree Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -13,16 +13,28 @@ matrix:
13
13
- " 0.10"
14
14
script :
15
15
- 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
16
28
- language : rust
17
29
script :
18
30
- cd rust/
19
31
- cargo build --verbose --all
20
32
- cargo test --verbose --all
21
33
22
34
# 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
26
38
27
39
# Test script to run. This is called once for each TEST_DIR value above.
28
- script : ./run_tests.sh
40
+ # script: ./run_tests.sh
You can’t perform that action at this time.
0 commit comments