Skip to content

Commit

Permalink
chore: trying out conda as the env manager
Browse files Browse the repository at this point in the history
  • Loading branch information
clintval committed Oct 17, 2023
1 parent 5a7d909 commit 0fa57fd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ target-version = ["py38"]
[tool.tox]
legacy_tox_ini = """
[tox]
basepython = none
requires = tox-conda
isolated_build = True
skip_missing_interpreters = false
envlist = py312,py311,py310,py39,py38
[gh-actions]
Expand All @@ -56,7 +59,7 @@ python =
3.8: py38
[testenv]
allowlist_externals = poetry
conda_deps = poetry
commands =
poetry install -v
poetry run pytest caseless/ tests/
Expand Down

0 comments on commit 0fa57fd

Please sign in to comment.