diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 11bd9cd7..be6a3754 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -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 }}