Files
cadquery/.travis.yml
Jeremy Wright 6ac629352a Trying to get Travis CI to ignore the pythonocc branch
This branch will be broken for some time, and we don't need the build status of the entire repo failing because of it.
2015-05-13 12:21:04 -04:00

24 lines
436 B
YAML

---
language: python
before_install:
- sudo add-apt-repository -y ppa:freecad-maintainers/freecad-daily
- sudo apt-get update -qq
install:
- sudo apt-get install -y freecad freecad-doc
- gcc --version
- g++ --version
- python ./setup.py install
- pip install coverage
- pip install coveralls
script:
- coverage run --source=cadquery ./runtests.py
after_success:
- coveralls
branches:
except:
- pythonocc