Skip to content

Commit

Permalink
Disable testing on TF nightly (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
adriangb authored Oct 14, 2022
1 parent 0144439 commit eb88be8
Showing 1 changed file with 40 additions and 40 deletions.
80 changes: 40 additions & 40 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,46 +56,46 @@ jobs:
- uses: codecov/codecov-action@v1

TestDev:
name: Ubuntu / Python ${{ matrix.python-version }} / TensorFlow Nightly / Scikit-Learn Nightly
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]

steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Install and Set Up Poetry
run: |
python -m pip install --upgrade poetry
poetry config virtualenvs.in-project true
poetry run python -m pip install --upgrade pip
- name: Install Dependencies
run: |
poetry remove scikit-learn
poetry install
- name: Install Nightly Versions
if: always()
run: |
poetry run python -m pip install -U tf-nightly
poetry run python -m pip install -U scipy
poetry run python -m pip install -U --pre --extra-index https://pypi.anaconda.org/scipy-wheels-nightly/simple scikit-learn
- name: Test with pytest
if: always()
run: |
poetry run python -m pip freeze
poetry run python -m pytest -v --cov=scikeras --cov-report xml --color=yes
- uses: codecov/codecov-action@v1
# TestDev:
# name: Ubuntu / Python ${{ matrix.python-version }} / TensorFlow Nightly / Scikit-Learn Nightly
# runs-on: ubuntu-latest
# strategy:
# matrix:
# python-version: ["3.10"]

# steps:
# - uses: actions/checkout@v2

# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v2
# with:
# python-version: ${{ matrix.python-version }}

# - name: Install and Set Up Poetry
# run: |
# python -m pip install --upgrade poetry
# poetry config virtualenvs.in-project true
# poetry run python -m pip install --upgrade pip

# - name: Install Dependencies
# run: |
# poetry remove scikit-learn
# poetry install

# - name: Install Nightly Versions
# if: always()
# run: |
# poetry run python -m pip install -U tf-nightly
# poetry run python -m pip install -U scipy
# poetry run python -m pip install -U --pre --extra-index https://pypi.anaconda.org/scipy-wheels-nightly/simple scikit-learn

# - name: Test with pytest
# if: always()
# run: |
# poetry run python -m pip freeze
# poetry run python -m pytest -v --cov=scikeras --cov-report xml --color=yes

# - uses: codecov/codecov-action@v1

TestOldest:
name: Ubuntu / Python ${{ matrix.python-version }} / TF ${{ matrix.tf-version }} / Scikit-Learn ${{ matrix.sklearn-version }}
Expand Down

0 comments on commit eb88be8

Please sign in to comment.