mirror of
https://git.wownero.com/lza_menace/wownero-python.git
synced 2024-08-15 03:25:25 +00:00
20 lines
303 B
YAML
20 lines
303 B
YAML
|
language: python
|
||
|
python:
|
||
|
- "2.7"
|
||
|
- "3.6"
|
||
|
- "nightly"
|
||
|
|
||
|
matrix:
|
||
|
allow_failures:
|
||
|
python: "nightly"
|
||
|
|
||
|
cache: pip
|
||
|
before_install:
|
||
|
- pip install -r test_requirements.txt
|
||
|
install:
|
||
|
- pip install -e . # install dependencies as specified in setup.py
|
||
|
script:
|
||
|
- pytest
|
||
|
after_success:
|
||
|
- coveralls
|