Skip to content

Commit 5c90746

Browse files
committed
Merge branch 'py3-code-migration' into py3-testcases-refractor
2 parents aeae735 + b0ca411 commit 5c90746

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
matrix:
1212
os:
1313
- ubuntu-latest
14+
python: [ 3.7, 3.9]
1415
splunk-version:
1516
- "8.0"
1617
- "latest"
@@ -34,7 +35,7 @@ jobs:
3435
- name: Setup Python
3536
uses: actions/setup-python@v2
3637
with:
37-
python-version: 3.7
38+
python-version: ${{ matrix.python }}
3839
- name: Install tox
3940
run: pip install tox
4041
- name: Test Execution

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ docs:
3434
.PHONY: test
3535
test:
3636
@echo "$(ATTN_COLOR)==> test $(NO_COLOR)"
37-
@tox -e py37
37+
@tox -e py37,py39
3838

3939
.PHONY: test_specific
4040
test_specific:

0 commit comments

Comments
 (0)