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 improvements #906

Merged
merged 2 commits into from
May 15, 2023
Merged

CI improvements #906

merged 2 commits into from
May 15, 2023

Conversation

nicoddemus
Copy link
Member

Improvements based on #905:

  • Fix tag creation in deploy workflow
  • Use same package in all test runs

@@ -43,5 +43,7 @@ jobs:

- name: Push tag
run: |
git config user.name "pytest bot"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops forgot about this 👍

run: |
tox -e ${{ matrix.tox_env }}
tox run -e ${{ matrix.tox_env }} --installpkg `find dist/*.tar.gz`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Testing the actual package (alike) we intent to ship is a good pattern, and from the tox output seems to work as intended.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

at first glance we only test the sdist and not the wheel

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indeed, but AFAIK this is how it always has been: tox generates both wheel and sdist, but only installs sdist:

λ tox -e py310
...
py310: install_package_deps> python -I -m pip install execnet>=1.1 filelock pytest>=6.2.0
py310: install_package> python -I -m pip install --force-reinstall --no-deps E:\projects\pytest-xdist\.tox\.tmp\package\4\pytest-xdist-3.3.1.dev2+g6d39025.tar.gz
py310: commands[0]> pytest
...

Testing both seems a bit overkill, if that's what you are suggesting.

run: |
tox -e ${{ matrix.tox_env }}
tox run -e ${{ matrix.tox_env }} --installpkg `find dist/*.tar.gz`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

at first glance we only test the sdist and not the wheel

@nicoddemus
Copy link
Member Author

nicoddemus commented May 12, 2023

Btw, I could swear I have left a comment regarding this, but here it goes:

I think the next step is to have another job which depends on test, and does the deployment to PyPI under a few conditions:

  1. From a branch in the format release-* in the pytest-dev/pytest-xdist repository (upstream, no forks).
  2. Also using the deploy environment, meaning that this job will only start after manual approval from @pytest-dev/pytest-xdist-admin (at least 1 person).

This new job would of course replace the deploy workflow.

What do you folks think?

@nicoddemus nicoddemus merged commit 9efc64e into pytest-dev:master May 15, 2023
22 checks passed
@nicoddemus nicoddemus deleted the ci-improvements branch May 15, 2023 12:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants