File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -30,12 +30,11 @@ script:
30
30
31
31
after_success :
32
32
- ls wheelhouse/
33
- - if [ "$TRAVIS_OS_NAME" == "osx" ]; then bash <(curl -s https://codecov.io/bash); fi
34
33
35
34
deploy :
36
35
provider : script
37
36
skip_cleanup : true
38
- script : scripts /deploy.sh
37
+ script : ci /deploy.sh
39
38
on :
40
39
tags : true
41
40
repo : whtsky/bencoder.pyx
Original file line number Diff line number Diff line change @@ -18,13 +18,14 @@ build: off
18
18
test_script :
19
19
- tox
20
20
21
- on_success :
21
+ after_test :
22
22
- pip install codecov
23
23
- codecov
24
24
- del bencoder.c
25
25
- tox -c tox-wheels.ini
26
26
27
27
deploy_script :
28
+ - ps : " ls wheelhouse/*"
28
29
- echo [distutils] > %USERPROFILE%\\.pypirc
29
30
- echo index-servers = >> %USERPROFILE%\\.pypirc
30
31
- echo pypi >> %USERPROFILE%\\.pypirc
@@ -33,8 +34,7 @@ deploy_script:
33
34
- echo password=%password% >> %USERPROFILE%\\.pypirc
34
35
- set HOME=%USERPROFILE%
35
36
- pip install twine
36
- - ps : if($env:APPVEYOR_REPO_TAG -eq $TRUE) { "twine upload wheelhouse/bencoder*.whl" }
37
-
37
+ - ps : if($env:APPVEYOR_REPO_TAG -eq $TRUE) { "twine upload wheelhouse/*.whl" }
38
38
39
39
artifacts :
40
- - path : wheelhouse/bencoder *.whl
40
+ - path : wheelhouse/*.whl
Original file line number Diff line number Diff line change 1
1
python setup.py test
2
+ bash <( curl -s https://codecov.io/bash)
2
3
rm bencoder.c
3
4
pip wheel . -w wheelhouse/
You can’t perform that action at this time.
0 commit comments