forked from adamreeve/npTDMS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwercker.yml
More file actions
31 lines (29 loc) · 693 Bytes
/
wercker.yml
File metadata and controls
31 lines (29 loc) · 693 Bytes
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
box: adreeve/python-numpy
build:
steps:
- script:
name: PEP8 Check
code: |
pep8 ./nptdms
- script:
name: Test on Python 2.7
code: |
python2.7 setup.py install
nosetests
- script:
name: Test on Python 3
code: |
python3 setup.py install
nosetests3
deploy:
steps:
- script:
name: Deploy to pypi
code: |
echo "[pypirc]
servers = pypi
[server-login]
username:$PYPI_USER
password:$PYPI_PASSWORD" > ~/.pypirc
python setup.py sdist upload || exit 1
python setup.py bdist_wheel upload || exit 1