Skip to content

Commit

Permalink
Merge pull request #87 from vidartf/appveyor
Browse files Browse the repository at this point in the history
Add appveyor config
  • Loading branch information
blink1073 committed Feb 10, 2017
2 parents 74f8b6a + 39ef8fe commit 0faed59
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -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 0faed59

Please sign in to comment.