mirror of
https://github.com/jopohl/urh.git
synced 2026-03-24 00:47:00 +01:00
23 lines
582 B
YAML
23 lines
582 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/cythonext/build.py
|
|
- pytest -s -v tests
|
|
|