diff options
| author | Micah Cochran <micahcochran@users.noreply.github.com> | 2016-05-25 12:12:19 -0500 |
|---|---|---|
| committer | Micah Cochran <micahcochran@users.noreply.github.com> | 2016-05-25 12:12:19 -0500 |
| commit | c5f751692e535cb30418e5695144e4c42c4fcf94 (patch) | |
| tree | c18658dbfe673787da1ee5b49b598b8f1b1a46b9 /.travis.yml | |
| parent | 0b2d94b76f151504701672cda1a40df55273be69 (diff) | |
| download | PROJ-c5f751692e535cb30418e5695144e4c42c4fcf94.tar.gz PROJ-c5f751692e535cb30418e5695144e4c42c4fcf94.zip | |
Add lzip, a zip function that acts like Python 2.x's zip function. In Python 3.x, the zip function is iterable, which caused Python 3.x to miss some coordinate tests. Add cli argument '--test' to test_json.py to only specify one test type (conversion/roundtrip) to be ran. Change Travis testing to only perform conversion test on some JSON test files.
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index f5fec934..a476f875 100644 --- a/.travis.yml +++ b/.travis.yml @@ -112,7 +112,8 @@ install: - cd test/gigs # run test_json.py - - PROJ_LIB=../../nad python3 test_json.py 5101.1-jhs.json 5101.2-jhs.json 5101.3-jhs.json 5101.4-jhs-etmerc.json 5102.1.json 5103.1.json 5103.2.json 5103.3.json 5104.json 5105.2.json 5106.json 5107.json 5109.json 5111.1.json 5112.json 5113.json 5201.json 5208.json + - PROJ_LIB=../../nad python3 test_json.py --test conversion 5101.1-jhs.json 5101.4-jhs-etmerc.json 5105.2.json 5106.json 5108.json 5110.json 5111.1.json + - PROJ_LIB=../../nad python3 test_json.py 5101.2-jhs.json 5101.3-jhs.json 5102.1.json 5103.1.json 5103.2.json 5103.3.json 5107.json 5109.json 5112.json 5113.json 5201.json 5208.json - cd ../.. - mv src/.libs/*.gc* src |
