File: appveyor.yml

package info (click to toggle)
terminaltables 3.1.10-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,240 kB
  • sloc: python: 2,988; makefile: 22; sh: 11
file content (27 lines) | stat: -rw-r--r-- 590 bytes parent folder | download | duplicates (2)
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
# Configure.
environment:
  PATH: C:\%PYTHON%;C:\%PYTHON%\Scripts;%PATH%
  PYTHON: Python35
  matrix:
    - TOX_ENV: lint
    - TOX_ENV: py35
    - TOX_ENV: py34
    - TOX_ENV: py33
    - TOX_ENV: py27
    - TOX_ENV: py
      PYTHON: Python35-x64
    - TOX_ENV: py
      PYTHON: Python34-x64
    - TOX_ENV: py
      PYTHON: Python33-x64
    - TOX_ENV: py
      PYTHON: Python27-x64

# Run.
build_script: pip install tox
test_script: tox -e %TOX_ENV%
on_success: IF %TOX_ENV% NEQ lint pip install codecov & codecov

# Post.
on_finish:
  - FOR %%F IN (test*.png) DO appveyor PushArtifact %%F