We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.appveyor.yml
1 parent d79362c commit 629b302Copy full SHA for 629b302
.appveyor.yml
@@ -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