Skip to content

Remove test duplication in CI #151

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

Merged
merged 5 commits into from
Jun 16, 2022
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/unit_tests_with_latest_deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ jobs:
make installdeps-test
pip install git+https://github.com/alteryx/featuretools.git@main#egg=featuretools --force-reinstall
- if: ${{ matrix.featuretools_version == 'Release' }}
name: Install latest version of Featuretools from main branch
name: Install latest version of Featuretools from PyPI
run: |
make installdeps-complete
make installdeps-test
- if: ${{ matrix.python_version != 3.7 || matrix.featuretools_version != 'main' }}
name: Run unit tests with no code coverage
run: |
make test
- if: ${{ matrix.python_version == 3.7 || matrix.featuretools_version == 'main' }}
- if: ${{ matrix.python_version == 3.7 && matrix.featuretools_version == 'main' }}
name: Run unit tests with code coverage
run: |
make testcoverage
Expand Down
1 change: 1 addition & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Future Release
* Documentation Changes
* Testing Changes
* Fix latest dependency checker to create PR (:pr:`129`)
* Fixed unit tests workflow test choice logic (:pr:`151`)

Thanks to the following people for contributing to this release:
:user:`gsheni`, :user:`rwedge`
Expand Down