We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1816c09 commit 855f92cCopy full SHA for 855f92c
.travis.yml
@@ -17,6 +17,7 @@ env:
17
- TEST_DIR=js
18
- TEST_DIR=go
19
- TEST_DIR=ruby
20
+ - TEST_DIR=python
21
22
# Test script to run. This is called once for each TEST_DIR value above.
23
script: ./run_tests.sh
run_tests.sh
@@ -31,5 +31,10 @@ if [ "$TEST_DIR" == "ruby" ]; then
31
cd ruby && ruby test/plus_codes_test.rb
32
exit
33
fi
34
+# Python?
35
+if [ "$TEST_DIR" == "python" ]; then
36
+ python python/openlocationcode_test.py
37
+ exit
38
+fi
39
40
echo "Unknown test directory: $TEST_DIR"
0 commit comments