Skip to content

Commit f801261

Browse files
authored
Fix typo and remove double check. (#107)
There is no need to check that all tests are passing as they all are displayed in the github UI and required to merge.
1 parent 56da5c4 commit f801261

File tree

2 files changed

+1
-20
lines changed

2 files changed

+1
-20
lines changed

.github/workflows/python-tests.yml

-19
Original file line numberDiff line numberDiff line change
@@ -155,22 +155,3 @@ jobs:
155155
with:
156156
version_spec: 100.100.100
157157
token: ${{ secrets.GITHUB_TOKEN }}
158-
159-
tests_check: # This job does nothing and is only used for the branch protection
160-
if: always()
161-
needs:
162-
- coverage
163-
- docs
164-
- test_lint
165-
- check_release
166-
- test_minimum_versions
167-
- test_prereleases
168-
- jupyter_server_downstream
169-
- test_sdist
170-
- check_links
171-
runs-on: ubuntu-latest
172-
steps:
173-
- name: Decide whether the needed jobs succeeded or failed
174-
uses: re-actors/alls-green@release/v1
175-
with:
176-
jobs: ${{ toJSON(needs) }}

docs/user_guide/event-schemas.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ print(logger.schemas)
3838
Validator class: Draft7Validator
3939
Schema: {
4040
"$id": "myapplication.org/example-event",
41-
""version": 1",
41+
"version": "1",
4242
"title": "Example Event",
4343
"description": "An interesting event to collect",
4444
"properties": {

0 commit comments

Comments
 (0)