-
Notifications
You must be signed in to change notification settings - Fork 6
E2E workflow updates #49
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
Conversation
kyleknap
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Just had some more comments. I like the approach of just adding it to the ci.yml. I think that is going to make it managing the workflows easier.
58340ec to
9323505
Compare
kyleknap
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Just had one more comment and we should be good to merge it.
.github/workflows/ci.yml
Outdated
| python-version: ${{ matrix.python-version }} | ||
| - name: Install dependencies | ||
| run: | | ||
| python -m pip install -r requirements-dev.txt |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's remove the line for installing from requirements-dev.txt. Specifically, for end to end tests, we want to install it as close as we can to what it would be like if installing directly from PyPI, which likely means unpinned dependencies. So, by removing this line, it will make sure we can install the library using the latest versions of our dependencies.
kyleknap
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! 🚢
Modified the workflow so integration tests are run when there are pushes to main or PRs.