summaryrefslogtreecommitdiff
path: root/appveyor.yml
blob: ac139e974a5634183410bf4d004ebf5033acb9de (plain)
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
environment:
  matrix:
    - PYTHON: "C:\\Python35-x64"
      TOX_ENV: "py35-crypto"

    - PYTHON: "C:\\Python36-x64"
      TOX_ENV: "py36-crypto"

    - PYTHON: "C:\\Python37-x64"
      TOX_ENV: "py37-crypto"

init:
  - SET PATH=%PYTHON%;%PATH%
  - python -c "import sys;sys.stdout.write(sys.version)"
  - ECHO .
  - python -m pip list

# pip & virtualenv are pre-installed
install:
  - python -m pip install -U setuptools
  - python -m pip install -U pip
  - python -m pip install -U wheel
  - python -m pip install -U tox

build: false  # Not a C# project, build stuff at the test step instead.

test_script:
  - python -m tox -e %TOX_ENV%

after_test:
  - python setup.py bdist_wheel
  - ps: "ls dist"

artifacts:
  - path: dist\*

#on_success:
#  - TODO: upload the content of dist/*.whl to a public wheelhouse