File tree Expand file tree Collapse file tree 1 file changed +21
-20
lines changed Expand file tree Collapse file tree 1 file changed +21
-20
lines changed Original file line number Diff line number Diff line change 1- name : Run Test
1+ name : Test
22
33on :
4- pull_request :
5- branches :
6- - ' ltsm-stack'
7- push :
8- branches :
9- - ' ltsm-stack'
4+ - pull_request
5+ - push
6+
107jobs :
118 test :
129 runs-on : ${{ matrix.os }}
@@ -15,16 +12,20 @@ jobs:
1512 os : [ubuntu-latest]
1613 python-version : ['3.10']
1714 steps :
18- - uses : actions/checkout@v4
19- - name : Set up Python
20- uses : actions/setup-python@v5
21- with :
22- python-version : ${{ matrix.python-version }}
23- - name : Install dependencies
24- run : |
25- python -m pip install --upgrade pip
26- pip install -r requirements.txt
27- - name : Test with pytest
28- run : |
29- export PYTHONPATH=./:$PYTHONPATH
30- pytest tests/ --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html
15+ - name : Checkout repository
16+ uses : actions/checkout@v4
17+
18+ - name : Set up Python
19+ uses : actions/setup-python@v5
20+ with :
21+ python-version : ${{ matrix.python-version }}
22+
23+ - name : Install dependencies
24+ run : |
25+ python -m pip install --upgrade pip
26+ pip install -r requirements.txt
27+
28+ - name : Test with pytest
29+ run : |
30+ export PYTHONPATH=./:$PYTHONPATH
31+ pytest tests/ --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html
You can’t perform that action at this time.
0 commit comments