Skip to content

Commit 194f6a8

Browse files
authored
Update qiita-plugin-ci.yml
1 parent d80ba79 commit 194f6a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/qiita-plugin-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ["3.6", "3.9", "3.10", "3.11", "3.12"]
14+
python-version: ["3.5", "3.6", "3.9", "3.10", "3.11", "3.12"]
1515
steps:
1616
# Downloads a copy of the code in your repository before running CI tests
1717
- name: Check out repository code
@@ -35,7 +35,7 @@ jobs:
3535
shell: bash -l {0}
3636
run: |
3737
conda activate qiita-files
38-
pytest --doctest-modules --cov=qiita_files --cov-report=lcov
38+
pytest --doctest-modules --cov=qiita_files `if (( $(echo "${{ matrix.python-version }} > 3.6" | bc -l) )); then echo "--cov-report=lcov"; else echo ""; fi`
3939
4040
lint:
4141
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)