Skip to content

Commit

Permalink
wip: fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
tschuelia committed Dec 26, 2024
1 parent a142606 commit 3960fe8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/test-pythia.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ jobs:
uses: ./.github/actions/setup-lightgbm
- name: Install Pythia and setup requirements
run: |
pip install -e .
pip install pytest
pip install -e .[test]
rm tests/test_config.py
echo "RAXMLNG_COMMAND = '${{ env.raxmlng }}'" > tests/test_config.py
cat tests/test_config.py
Expand All @@ -40,7 +39,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v3
- name: Setup Conda
uses: mamba-org/setup-micromamba@v1
uses: mamba-org/setup-micromamba@v2
with:
environment-file: etc/environment.yml
cache-environment: true
Expand Down
7 changes: 4 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ install_requires =
matplotlib
loguru

tests_require =
"pytest"
"pyarrow"
[options.extras_require]
test =
pytest
pyarrow

python_requires = >=3.9
package_dir=
Expand Down

0 comments on commit 3960fe8

Please sign in to comment.