-
Notifications
You must be signed in to change notification settings - Fork 5
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
Run all cookie tests and fix check for sdist tarball #118
Conversation
Again confused why some tests register as "cancelled" sometimes. |
@@ -171,7 +171,7 @@ jobs: | |||
|
|||
- name: Check package build | |||
run: | | |||
DISTRIBUTION=$(ls -t1 dist/{{ cookiecutter.repo_name }}-*.tar.gz | head -n 1) | |||
DISTRIBUTION=$(ls -t1 dist/{{ cookiecutter.repo_name.lower().replace('-', '_') }}-*.tar.gz | head -n 1) |
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.
Ah sorry if I'm too late, didn't know if you wanted comments - I was wondering if "." also needed to be accounted for as per https://peps.python.org/pep-0503/#normalized-names
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.
Ah that's a good idea, thanks for the comment -- I didn't request reviews since this seemed like a small change to me. I've raised #119 for this now
Relates to #112
Changes made in this Pull Request:
PR Checklist