We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a7bdc66 + 65286df commit b9b5a24Copy full SHA for b9b5a24
.travis.yml
@@ -73,6 +73,24 @@ matrix:
73
env: TOX_ENV=pypy
74
- python: pypy3
75
env: TOX_ENV=pypy3
76
+ # We use explicit version as the PATH needs major-minor part
77
+ - name: "Python3.8.0 on Windows"
78
+ os: windows
79
+ language: shell
80
+ before_install:
81
+ - choco install python --version 3.8.0
82
+ - python -m pip install --upgrade pip
83
+ env: PATH=/c/Python38:/c/Python38/Scripts:$PATH
84
+ install:
85
+ - pip list
86
+ - pip install six
87
+ - pip install -r build-requirements.txt
88
89
+ script:
90
+ - coverage run --branch -m pytest src/ecdsa
91
+ after_success:
92
+ - coveralls
93
+
94
allow_failures:
95
- python: nightly
96
0 commit comments