File tree 3 files changed +9
-8
lines changed
3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 9
9
strategy :
10
10
matrix :
11
11
os : [ubuntu-latest, macOS-latest]
12
- python-version : [3.6 , 3.7 , 3.8 ]
12
+ python-version : [3.7 , 3.8 , 3.9 ]
13
13
name : Python ${{ matrix.python-version }} example
14
14
15
15
steps :
Original file line number Diff line number Diff line change 5
5
vmImage : ' macOS-latest'
6
6
strategy :
7
7
matrix :
8
- Python36 :
9
- python.version : ' 3.6'
10
8
Python37 :
11
9
python.version : ' 3.7'
12
10
Python38 :
13
11
python.version : ' 3.8'
12
+ Python39 :
13
+ python.version : ' 3.9'
14
14
15
15
steps :
16
16
- bash : echo "##vso[task.prependpath]$CONDA/bin"
@@ -35,12 +35,13 @@ jobs:
35
35
vmImage : ' ubuntu-latest'
36
36
strategy :
37
37
matrix :
38
- Python36 :
39
- python.version : ' 3.6'
40
38
Python37 :
41
39
python.version : ' 3.7'
42
40
Python38 :
43
41
python.version : ' 3.8'
42
+ Python39 :
43
+ python.version : ' 3.9'
44
+
44
45
steps :
45
46
- bash : echo "##vso[task.prependpath]$CONDA/bin"
46
47
displayName : Add conda to PATH
55
56
conda build --no-test --python $PYTHON_VERSION ./conf/conda
56
57
conda create --name shenfun pip shenfun python=$PYTHON_VERSION --use-local
57
58
source activate shenfun
58
- pip install pytest-cov pytest quadpy>=0.16.9
59
+ pip install pytest-cov pytest quadpy
59
60
pytest tests/ --junitxml=junit/test-results.xml --cov=$(python -c "import site; print(site.getsitepackages()[0]+'/shenfun')") --cov-report=xml --cov-report=html
60
61
displayName: Build and test
61
62
72
73
reportDirectory : ' $(System.DefaultWorkingDirectory)/**/htmlcov'
73
74
74
75
- bash : |
75
- if [ $PYTHON_VERSION == 3.7 ]; then
76
+ if [ $PYTHON_VERSION == 3.9 ]; then
76
77
source activate shenfun
77
78
pip install codecov
78
79
bash <(curl -s https://codecov.io/bash)
Original file line number Diff line number Diff line change 1
- quadpy >=0.16.9
1
+ quadpy
You can’t perform that action at this time.
0 commit comments