-
Notifications
You must be signed in to change notification settings - Fork 45
Update local testing workflow instructions #291
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
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
40b5ac0
upadate workflow to create artefacts for local testing
waltsims a8c08eb
Merge branch 'master' into artefact-dev-instructions
waltsims 7273d77
add artifact step
waltsims 02d89db
Merge branch 'artefact-dev-instructions' of github.com:waltsims/k-wav…
waltsims cfbcb5a
Trigger a test
waltsims ea604e6
Trigger artifact
waltsims d0a9d7a
bump to artifact v4
waltsims 42e526e
Merge branch 'artefact-dev-instructions' of github.com:waltsims/k-wav…
waltsims 9be9af0
try to print artifact URL
waltsims 1b572ee
trigger workflow
waltsims c03afc3
add artifact-upload-step id
waltsims ed1d10e
trigger collection
waltsims 1c1bf4c
fix typo
waltsims d8311f7
Merge branch 'artefact-dev-instructions' of github.com:waltsims/k-wav…
waltsims 2e586a8
test_optional_dependencies
waltsims 2ef5e71
update dev documentation
waltsims fe54974
delete tests not run in the CI
waltsims 6cd598a
update docs with how to run tests
waltsims a0fdbd9
delete space
waltsims 59b4c1b
reformatting
waltsims 6258700
Merge branch 'artefact-dev-instructions' of github.com:waltsims/k-wav…
waltsims 98232e0
more formatting
waltsims e095c7d
fix code-blocks
waltsims a25fc21
update coverage command
waltsims df7529c
Add instructions for generating the references
faridyagubbayli 271dd6c
Merge branch 'master' into artefact-dev-instructions
faridyagubbayli e69d60b
Merge branch 'master' into artefact-dev-instructions
waltsims 9084f1d
Update development_environment.rst
waltsims c53f021
Update development_environment.rst
waltsims 60b389b
Update development_environment.rst
waltsims 9bd96e5
Merge branch 'master' into artefact-dev-instructions
faridyagubbayli 6714ad6
Merge branch 'master' into artefact-dev-instructions
faridyagubbayli ea7742d
Drop python 3.8 tests
faridyagubbayli ab23cb6
Add an example link
waltsims File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| name: test_optional_requirements | ||
|
|
||
| on: [push, pull_request] | ||
|
|
||
| jobs: | ||
| test_install: | ||
| strategy: | ||
| matrix: | ||
| os: [ "windows-latest", "ubuntu-latest" ] #, "macos-latest"] | ||
| python-version: [ "3.9", "3.10", "3.11" ] | ||
| extra_requirements: [ "test", "examples", "docs", "dev", "all" ] | ||
| runs-on: ${{matrix.os}} | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| # Pull the cache based on the hash value | ||
| - name: Set up Python ${{ matrix.python-version }} | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: ${{ matrix.python-version }} | ||
| cache: 'pip' | ||
| - name: Install dependencies | ||
| run: | | ||
| pip install '.[${{ matrix.extra_requirements }}]' | ||
waltsims marked this conversation as resolved.
Show resolved
Hide resolved
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.