Skip to content

Commit 629b302

Browse files
author
Martin Larralde
committed
Add AppVeyor configuration file .appveyor.yml
1 parent d79362c commit 629b302

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.appveyor.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: 1.0.{build}
2+
image: Visual Studio 2017
3+
4+
environment:
5+
matrix:
6+
- PYTHON: "C:\\Python37-x64"
7+
- PYTHON: "C:\\Python27"
8+
9+
install:
10+
- '%PYTHON%\python.exe -m pip install -U setuptools wheel'
11+
12+
build_script:
13+
- '%PYTHON%\python.exe -m pip install .[dev,test]'
14+
15+
test_script:
16+
- '%PYTHON%\python.exe -c "import fs.sshfs; print(fs.sshfs.__version__)"'
17+
- ssh localhost
18+
19+
#after_test:
20+
#- '%PYTHON%\python.exe -m codecov'

0 commit comments

Comments
 (0)