Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci fix #1066

Merged
merged 7 commits into from
Sep 22, 2023
Merged

ci fix #1066

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,13 @@ jobs:
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install dependencies
- name: Install packages and test with pytest
run: |
conda env update --file environment.yml --name base
- name: Test with pytest
run: |
conda update conda -y -q
conda config --add channels conda-forge
conda update conda -y -q
conda install scikit-learn=1.0.2 pandas=1.3.5 -y -q
conda env update --file environment.yml --name base
pip install scikit-learn==1.1.3
pip install pandas==1.3.5
conda install tensorflow joblib pytest -y -q
conda install imageio scikit-image -y -q
conda install dlib -y -q
Expand All @@ -44,4 +42,4 @@ jobs:
coverage run --source=mlxtend --branch -m pytest mlxtend
coverage xml
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v2
Loading