Skip to content

Commit

Permalink
try disabling tox-conda for GH workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
zertrin committed Nov 27, 2023
1 parent e903a38 commit af6767b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: Test with tox
Expand Down
39 changes: 20 additions & 19 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
requires = tox-conda
; requires = tox-conda
envlist = py37, py38, py39, py310, py311, py312, flake8
skip_missing_interpreters = True

Expand All @@ -21,29 +21,30 @@ deps =
commands =
py.test --basetemp={envtmpdir} --cov=zkpytb

[testenv:py37]
conda_deps =
python=3.7
; [testenv:py37]
; conda_deps =
; python=3.7
; setuptools

[testenv:py38]
conda_deps =
python=3.8
; [testenv:py38]
; conda_deps =
; python=3.8

[testenv:py39]
conda_deps =
python=3.9
; [testenv:py39]
; conda_deps =
; python=3.9

[testenv:py310]
conda_deps =
python=3.10
; [testenv:py310]
; conda_deps =
; python=3.10

[testenv:py311]
conda_deps =
python=3.11
; [testenv:py311]
; conda_deps =
; python=3.11

[testenv:py312]
conda_deps =
python=3.12
; [testenv:py312]
; conda_deps =
; python=3.12

[testenv:flake8]
basepython=python
Expand Down

0 comments on commit af6767b

Please sign in to comment.