This repository has been archived by the owner on Sep 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path.travis.yml
49 lines (41 loc) · 1.75 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# This file was autogenerated and will overwrite each time you run travis_pypi_setup.py
language: python
python:
- 3.6
addons:
apt:
packages:
- libleveldb-dev
- libsqlite3-dev
install:
- pip install -e .
- pip install -r requirements_dev.txt
- pip install coveralls
env:
- SKIP_DEPS_CHECK=1 NEOPYTHON_UNITTEST=1
script:
# run internal tests
- coverage run --omit neocore/Cryptography/ECCurve.py --source neocore setup.py test
- pycodestyle neocore tests
# now test the upstream neo-python dev branch with the current neocore code
- git clone https://github.com/CityOfZion/neo-python.git
- cd neo-python
- git checkout origin/development -b development
- pip install -e .
- yes | pip uninstall neocore neo-boa
- pip install git+https://github.com/CityOfZion/neo-boa@development
- pip install -e ../
- python -m unittest discover neo
- cd ..
after_success:
- coveralls
deploy:
true:
tags: true
python: 3.6
repo: CityOfZion/neo-python-core
distributions: sdist bdist_wheel
password:
secure: hGu/hIRPKLyd0+oKhw0GnJ1lULAcK4gx0gvYjL2Kn8frwlb8AlcRXNJKfb4LYAxMdUp29DoTmIIdnI2K5rkKWjkaTbGaHbq5ZBcRqfMuZjMAhnpAsHKbOUrfzFYkpllo9QCyI0Dn9hFczMkWA2ZplmU8EEkxrJen2FEWkGmt2qbU6dQ7WVde1GSEixgK1wbrDbpw1UtqHLZlDzPAPs18Drp5ftCkKKbz9Yhy5xzdBnsdFiiAp1YxIG8t+86ni4r+imUbP4GFtaqlpBaXzRgTMKVfB1dcNCv2n0wnhtHWs1I9jOqLHP0NCLDClzeIiMUOEBcVnWMqPo9cLj4eYy+16mzuUwAiI2XV1nGtXELASGCRVai4az41AblxgHnVZax1/qb+aroa6yJk4F+LWS8frDuYhv/ihx1dH+0pDybb1ZZPMv7Bh1lYoaqKg1F9oiU+AMTFrkRKtGOrqPe8U1Q1JLLYiXstVWOnLS6iMSoIRy4bk+TeoXShTcwE4pW8CmEFkyLxOn3syzJX6dRoo1+h1GHuI16mWpbNs86HH5dzmqOimUjpWFS881ClxrVJ+SKiY8rGvl+oAuln5Mpbh1z3c+pNDCTzTwSEiZdaRCEGh9O8jRNkfNQ6fEt3uGMtbs8jZkeg8oemD4/SqRMJdNrgMY3lyoUPxco68ZoNorIhTN8=
provider: pypi
user: CityOfZion