Skip to content

Commit

Permalink
Merge branch 'main' into MIT
Browse files Browse the repository at this point in the history
  • Loading branch information
OliverStolzBO authored Feb 29, 2024
2 parents b1f110b + c3aaf15 commit 4a50629
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 18 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/code_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ on:
paths:
- 'pfdl_scheduler/**'
- 'tests/**'
- 'requirements.txt'
- '.github/workflows/**'
pull_request:
branches:
- 'main'
paths:
- 'pfdl_scheduler/**'
- 'tests/**'
- 'requirements.txt'
- '.github/workflows/**'

permissions:
Expand Down Expand Up @@ -42,4 +44,4 @@ jobs:
coverage run --omit=tests/*,pfdl_scheduler/parser/PFDL* -m unittest discover -s tests/unit_test
coverage report
coverage json
coverage html
coverage html
10 changes: 1 addition & 9 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,9 @@ on:
push:
branches:
- 'main'
paths:
- 'pfdl_scheduler/**'
- 'tests/**'
- '.github/workflows/**'
pull_request:
branches:
- 'main'
paths:
- 'pfdl_scheduler/**'
- 'tests/**'
- '.github/workflows/**'

permissions:
contents: read
Expand All @@ -37,4 +29,4 @@ jobs:
- name: Run Lint check
run: |
python3 ci_lint_runner.py pfdl_scheduler 8
python3 ci_lint_runner.py tests 8
python3 ci_lint_runner.py tests 8
8 changes: 0 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,9 @@ on:
push:
branches:
- 'main'
paths:
- 'pfdl_scheduler/**'
- 'tests/**'
- '.github/workflows/**'
pull_request:
branches:
- 'main'
paths:
- 'pfdl_scheduler/**'
- 'tests/**'
- '.github/workflows/**'

permissions:
contents: read
Expand Down
4 changes: 4 additions & 0 deletions .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@ Source: https://github.com/iml130/pfd
Files: docs/img/*
Copyright: The PFDL Contributors
License: CC-BY-4.0

Files: pfdl_grammar/*
Copyright: The PFDL Contributors
License: MIT
2 changes: 2 additions & 0 deletions pfdl_scheduler/parser/PFDLLexer.py.license
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
SPDX-FileCopyrightText: The PFDL Contributors
SPDX-License-Identifier: MIT
2 changes: 2 additions & 0 deletions pfdl_scheduler/parser/PFDLParser.py.license
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
SPDX-FileCopyrightText: The PFDL Contributors
SPDX-License-Identifier: MIT
2 changes: 2 additions & 0 deletions pfdl_scheduler/parser/PFDLParserVisitor.py.license
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
SPDX-FileCopyrightText: The PFDL Contributors
SPDX-License-Identifier: MIT
6 changes: 6 additions & 0 deletions pfdl_scheduler/utils/log_entry_observer.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Copyright The PFDL Contributors
#
# Licensed under the MIT License.
# For details on the licensing terms, see the LICENSE file.
# SPDX-License-Identifier: MIT

"""This module provides the LogEntryObserver which implements the Observer pattern.
The scheduler notifies about log entries, so this class is used to catch these
Expand Down

0 comments on commit 4a50629

Please sign in to comment.