This branch will be broken for some time, and we don't need the build status of the entire repo failing because of it.
24 lines
436 B
YAML
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
|