Files
urh/circle.yml
2017-12-03 12:05:37 +01:00

24 lines
616 B
YAML

machine:
pre:
- export PATH=/usr/local/bin:$PATH:/Users/distiller/Library/Python/2.7/bin
- pip install --user --ignore-installed --upgrade virtualenv
- ln -s $HOME/Library/Python/2.7/bin/virtualenv /usr/local/bin/virtualenv
- brew update
xcode:
version: 8.2
dependencies:
override:
- brew update
- brew install python3
- pip3 install pytest
- pip3 install -r requirements.txt
test:
override:
- touch tests/show_gui
- python3 src/urh/main.py --version
- python3 src/urh/cythonext/build.py
- pytest tests