Skip to content

Commit d7e2efb

Browse files
committed
Remove a CI target because we don't ship Python 3.7 with Splunk 10
1 parent ade4a8f commit d7e2efb

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@ jobs:
1313
- 3.9
1414
- 3.13
1515
splunk-version:
16-
- 9.4
16+
- 9.3
1717
- latest
1818
include:
19+
# Ubuntu 22.04 is the last version we can get pre-built Python 3.7 binaries for
1920
- os: ubuntu-22.04
2021
python-version: 3.7
21-
splunk-version: 8.2
22+
splunk-version: 9.3
2223
steps:
2324
- name: Checkout repo
2425
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
@@ -31,7 +32,7 @@ jobs:
3132
with:
3233
python-version: ${{ matrix.python-version }}
3334
- name: Install dependencies
34-
run: type -a python && python -m pip install tox
35+
run: python -m pip install tox
3536
- name: Run Docker health check
3637
# Probably solves nothing, worth trying regardless
3738
run: |
@@ -42,8 +43,9 @@ jobs:
4243
exit 1
4344
fi
4445
- name: Run test suite
45-
run: type -a python && python -m tox -e py
46+
run: python -m tox -e py
4647
- name: Print docker logs for optional inspection
48+
if: ${{ secrets.ACTIONS_STEP_DEBUG }}
4749
run: docker compose logs
4850
# [BJ] I'll uncomment this step after I finish fiddling
4951
# fossa-scan:

0 commit comments

Comments
 (0)