Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ RedHatInsights/ccx-upgrades-data-eng:
dest: .github/workflows/linters.yaml
- source: workflows_examples/bots-auto-merge.yaml
dest: .github/workflows/bots-auto-merge.yaml
- source: workflows_examples/pytests.yaml
dest: .github/workflows/pytests.yaml

RedHatInsights/ccx-upgrades-inference:
- CODEOWNERS
Expand All @@ -29,6 +31,8 @@ RedHatInsights/ccx-upgrades-inference:
dest: .github/workflows/linters.yaml
- source: workflows_examples/bots-auto-merge.yaml
dest: .github/workflows/bots-auto-merge.yaml
- source: workflows_examples/pytests.yaml
dest: .github/workflows/pytests.yaml

RedHatInsights/content-service:
- CODEOWNERS
Expand All @@ -53,6 +57,8 @@ RedHatInsights/insights-ccx-messaging:
dest: .github/workflows/linters.yaml
- source: workflows_examples/bots-auto-merge.yaml
dest: .github/workflows/bots-auto-merge.yaml
- source: workflows_examples/pytests.yaml
dest: .github/workflows/pytests.yaml

RedHatInsights/insights-content-template-renderer:
- CODEOWNERS
Expand All @@ -61,6 +67,8 @@ RedHatInsights/insights-content-template-renderer:
dest: .github/workflows/linters.yaml
- source: workflows_examples/bots-auto-merge.yaml
dest: .github/workflows/bots-auto-merge.yaml
- source: workflows_examples/pytests.yaml
dest: .github/workflows/pytests.yaml

RedHatInsights/insights-core-messaging:
- CODEOWNERS
Expand All @@ -69,6 +77,8 @@ RedHatInsights/insights-core-messaging:
dest: .github/workflows/linters.yaml
- source: workflows_examples/bots-auto-merge.yaml
dest: .github/workflows/bots-auto-merge.yaml
- source: workflows_examples/pytests.yaml
dest: .github/workflows/pytests.yaml

# RedHatInsights/insights-data-schemas:
# - CODEOWNERS
Expand All @@ -80,6 +90,8 @@ RedHatInsights/insights-on-prem:
dest: .github/workflows/linters.yaml
- source: workflows_examples/bots-auto-merge.yaml
dest: .github/workflows/bots-auto-merge.yaml
- source: workflows_examples/pytests.yaml
dest: .github/workflows/pytests.yaml

RedHatInsights/insights-operator-gathering-conditions:
- CODEOWNERS
Expand All @@ -88,6 +100,8 @@ RedHatInsights/insights-operator-gathering-conditions:
dest: .github/workflows/linters.yaml
- source: workflows_examples/bots-auto-merge.yaml
dest: .github/workflows/bots-auto-merge.yaml
- source: workflows_examples/pytests.yaml
dest: .github/workflows/pytests.yaml

RedHatInsights/insights-operator-gathering-conditions-service:
- CODEOWNERS
Expand Down Expand Up @@ -147,6 +161,8 @@ RedHatInsights/insights-results-aggregator-utils:
dest: .github/workflows/linters.yaml
- source: workflows_examples/bots-auto-merge.yaml
dest: .github/workflows/bots-auto-merge.yaml
- source: workflows_examples/pytests.yaml
dest: .github/workflows/pytests.yaml

# RedHatInsights/insights-results-mcp:
# - CODEOWNERS
Expand Down Expand Up @@ -180,3 +196,5 @@ RedHatInsights/insights-behavioral-spec:
dest: .github/workflows/linters.yaml
- source: workflows_examples/bots-auto-merge.yaml
dest: .github/workflows/bots-auto-merge.yaml
- source: workflows_examples/pytests.yaml
dest: .github/workflows/pytests.yaml
7 changes: 5 additions & 2 deletions workflows_examples/pytests.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Python Unit tests
name: Python unit tests

on:
pull_request:
Expand All @@ -13,6 +13,9 @@ jobs:
- "3.11"
- "3.12"

uses: RedHatInsights/processing-tools/.github/workflows/pytests.yaml@master
uses: RedHatInsights/processing-tools/.github/workflows/pytests.yaml@v0.4.1
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
python_version: ${{ matrix.python-version }}
cov_branch: true
Loading