Skip to content
This repository has been archived by the owner on Sep 10, 2019. It is now read-only.

Commit

Permalink
added system dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
metachris committed Jan 3, 2018
1 parent a8d6556 commit c65d88c
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions .travis.yml
Expand Up @@ -4,6 +4,12 @@ language: python
python:
- 3.5

addons:
apt:
packages:
- libleveldb-dev
- libsqlite3-dev

install:
- pip install -r requirements.txt
- pip install -r requirements_dev.txt
Expand All @@ -19,19 +25,9 @@ script:
- cd neo-python
- pwd
- git checkout origin/development -b development
# - python3 -m venv venv
# - source venv/bin/activate
- which python
- which python3
- which pip
- which pip3.5
- python -V
- python3 -V
- pip -V
- pip3.5 -V
- pip3.5 install -r requirements.txt
- yes | pip3.5 uninstall neocore
- pip3.5 install -e ../
- pip install -r requirements.txt
- yes | pip uninstall neocore
- pip install -e ../
- coverage run -m unittest discover neo

after_success:
Expand Down

0 comments on commit c65d88c

Please sign in to comment.