File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -23,14 +23,17 @@ jobs:
23
23
steps :
24
24
- name : Checkout code
25
25
uses : actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
26
- - name : Run docker compose
26
+ - name : Launch Splunk Docker instance
27
27
run : SPLUNK_VERSION=${{ matrix.splunk-version }} docker compose up -d
28
- - name : Setup Python
28
+ - name : Setup Python ${{ matrix.python-version }}
29
29
uses : actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c
30
30
with :
31
31
python-version : ${{ matrix.python-version }}
32
- - name : Install dependencies
33
- # Will become ` python -m pip install . --group test` when we drop Python 3.7
32
+ - name : (Python 3.7) Install dependencies
33
+ if : ${{ matrix. python-version == ' 3.7' }}
34
34
run : python -m pip install python-dotenv deprecation pytest
35
- - name : Test Execution
35
+ - name : (Python >= 3.9) Install dependencies
36
+ if : ${{ matrix.python-version != '3.7' }}
37
+ run : python -m pip install . --group test
38
+ - name : Run entire test suite
36
39
run : python -m pytest ./tests
You can’t perform that action at this time.
0 commit comments