Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| language: python | |
| sudo: false | |
| dist: trusty | |
| python: 3.6 | |
| cache: | |
| apt: true | |
| pip: true | |
| ccache: true | |
| addons: | |
| apt: | |
| packages: | |
| - libgeos-dev | |
| before_install: | |
| - set -e # fail on any error | |
| # Merge in the GeoJSON files | |
| - git fetch --force origin +json:json | |
| - git checkout json -- orangecontrib/geo/geojson/\*.json | |
| install: | |
| - pip install PyQt5==5.11.* | |
| - pip install Orange3 | |
| - pip install pandas | |
| - pip install . | |
| script: | |
| - catchsegv xvfb-run -a -s "-screen 0 1280x1024x24" python setup.py test | |
| after_success: | |
| - |