Skip to content

Commit

Permalink
add wandb for pytest ci, and add quotations around python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
saleml committed Oct 25, 2023
1 parent 03f6ca6 commit ad12af3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
python-version: ['3.10', '3.11']

steps:
- uses: actions/checkout@v3
Expand All @@ -34,4 +34,5 @@ jobs:
- name: Test with pytest
run: |
conda install wandb
pytest
3 changes: 2 additions & 1 deletion .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: 3.10
python-version: '3.10'
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
Expand All @@ -31,4 +31,5 @@ jobs:
- name: Test with pytest
run: |
conda install pytest
conda install wandb
pytest

0 comments on commit ad12af3

Please sign in to comment.