-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ci: Add skip variable to workflow that builds docs. * refactor: Update examples to pass linting. * ci: try to get docs to build in GitHub * ci: Only build package for official repo. * feat: Added more support for 70k scopes and 7k AWGs. * docs: Add security policy. * docs: Update security policy. * docs: Update default parallel process count. * docs: Update to use 4 cores by default when building docs. * ci: Update runner for doc build. * ci: Zip up doc build archive before uploading it. * ci: Disable testing on mac temporarily. * ci: Update zip file name. * test: Re-order doc tests. * ci: change doc build to attempt to get workflow to pass * ci: change doc build to attempt to get workflow to pass, bump build * ci: change doc build to attempt to get workflow to pass * ci: allow make * ci: change to doc dir * ci: switch to using sphinx-build for docs * test: Update doctests to use sphinx build instead of make. * test: switch from sphinx to sphinx-build * test: Use python instead of subprocess in doc tests. * test: Update requirements to see if pytest-html was the cause of the issues. * ci: print out stdout while running pytest * ci: Add block to save sphinx log. * ci: Add block to save sphinx log. * ci: drop down to two parallel processes when building docs * ci: Add docs and doc tests back to CI. * ci: reduce normal doc build to 3 procs * test: Lock version of pytest-html until it is updated to fix the file not found issue. * test: Update testing requirements to work around bug in pytest-html with relative html output file paths. Added a troubleshooting guide for future contributors.
- Loading branch information
Showing
49 changed files
with
395 additions
and
37 deletions.
There are no files selected for viewing
This file contains 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 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 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 |
---|---|---|
|
@@ -14,7 +14,7 @@ concurrency: | |
jobs: | ||
# Test building the docs (html, linkcheck, doctest, coverage) | ||
test-docs: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-latest-4-cores | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
|
@@ -36,11 +36,17 @@ jobs: | |
python -m pip install --upgrade tox | ||
- name: Test | ||
run: tox -ve ${{ matrix.tox_env }} | ||
- uses: thedoctor0/[email protected] | ||
if: '!cancelled()' | ||
with: | ||
type: zip | ||
filename: ${{ matrix.tox_env }}_results.zip | ||
path: .results_${{ matrix.tox_env }}/ | ||
- uses: actions/upload-artifact@v3 | ||
if: '!cancelled()' | ||
with: | ||
name: artifact_${{ matrix.tox_env }} | ||
path: .results_${{ matrix.tox_env }}/** | ||
path: ${{ matrix.tox_env }}_results.zip | ||
# Check that all jobs passed | ||
check-docs-passed: | ||
if: always() | ||
|
This file contains 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 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 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,12 @@ | ||
# Security Policy | ||
|
||
## Supported Versions | ||
|
||
| Version | Supported | | ||
| ------- | ------------------ | | ||
| > 0.1.0 | :white_check_mark: | | ||
|
||
## Reporting a Vulnerability | ||
|
||
Please reach out directly to the maintainers to report a | ||
potential vulnerability. **Do not file a public issue.** |
This file contains 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 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 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 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 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 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
Oops, something went wrong.