mirror of https://github.com/nucypher/nucypher.git
18 lines
420 B
YAML
18 lines
420 B
YAML
language: python
|
|
cache: pip
|
|
python:
|
|
- '3.5'
|
|
- '3.6'
|
|
- '3.7'
|
|
install:
|
|
- pip install pipenv --upgrade
|
|
- pipenv install --dev --three
|
|
before_script:
|
|
- wget https://github.com/ethereum/solidity/releases/download/v0.4.24/solc-static-linux -O "${VIRTUAL_ENV}/bin/solc"
|
|
- chmod +x "${VIRTUAL_ENV}/bin/solc"
|
|
script:
|
|
- pipenv run -- pytest --runslow --cov=nucypher -v tests
|
|
- codecov
|
|
matrix:
|
|
allow_failures:
|
|
- python: '3.7' |