File tree 1 file changed +36
-0
lines changed
1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ pr :
2
+ autoCancel : true
3
+
4
+ jobs :
5
+
6
+ - job : ' Linux'
7
+ pool :
8
+ vmImage : ' ubuntu-latest'
9
+ strategy :
10
+ matrix :
11
+ Python36 :
12
+ python.version : ' 3.6'
13
+ Python37 :
14
+ python.version : ' 3.7'
15
+ Python38 :
16
+ python.version : ' 3.8'
17
+ Python39 :
18
+ python.version : ' 3.9'
19
+ Python310 :
20
+ python.version : ' 3.10'
21
+ maxParallel : 5
22
+
23
+ steps :
24
+ - bash : echo "##vso[task.prependpath]/usr/share/miniconda/bin"
25
+ displayName : Add conda to PATH
26
+
27
+ - bash : conda create -n foo -q --yes -c conda-forge -c bioconda python=$(python.version) libcurl zlib pip nose gcc_linux-64
28
+ displayName : Installing dependencies
29
+ - bash : |
30
+ source activate foo
31
+ python -m pip install . --no-deps --ignore-installed -vvv
32
+ displayName: Installing py2bit
33
+ - bash : |
34
+ source activate foo
35
+ nosetests -sv
36
+ displayName: Test py2bit
You can’t perform that action at this time.
0 commit comments