Skip to content

Commit

Permalink
Add appveyor config
Browse files Browse the repository at this point in the history
  • Loading branch information
vidartf committed Feb 10, 2017
1 parent 74f8b6a commit 39ef8fe
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions appveyor.yml
@@ -0,0 +1,31 @@
# Do not build feature branch with open Pull Requests
skip_branch_with_pr: true

# environment variables
environment:
matrix:
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.x"
PYTHON_MAJOR: 3
PYTHON_ARCH: "64"
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.x"
PYTHON_MAJOR: 2
PYTHON_ARCH: "32"

# scripts that run after cloning repository
install:
# Ensure python scripts are from right version:
- 'SET "PATH=%PYTHON%\\Scripts;%PATH%"'
# Install our package:
- pip install codecov
- 'pip install --upgrade ".[test]"'

build: off

# to run your custom scripts instead of automatic tests
test_script:
- 'py.test -v --cov nbformat nbformat'

on_success:
- codecov

0 comments on commit 39ef8fe

Please sign in to comment.