File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed
Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ name: golden tests
33on : [push, pull_request]
44
55env :
6- PYTHON_VERSION : 3.11
7-
6+ PYTHON_VERSION : 3.13
7+
88jobs :
99 build :
1010 runs-on : ubuntu-latest
11- steps :
11+ steps :
1212 - name : checkout repo content
1313 uses : actions/checkout@v4
1414 - name : setup python
2020 pip install -r requirements.txt
2121 python setup.py install
2222 - name : Run tests
23- run :
23+ run :
2424 python golden_tests/run_all_tests.py
2525 - name : Archive code coverage results
2626 uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ name: unit test action
33on : [push, pull_request]
44
55env :
6- PYTHON_VERSION : 3.11
6+ PYTHON_VERSION : 3.13
77
88jobs :
99 build :
1010 runs-on : ubuntu-latest
11- steps :
11+ steps :
1212 - name : checkout repo content
1313 uses : actions/checkout@v4
1414 - name : setup python
@@ -20,14 +20,14 @@ jobs:
2020 python -m pip install --upgrade pip
2121 pip install -r requirements.txt
2222 pip install -r requirements-dev.txt
23- pip install pytest
24- pip install -e .
23+ pip install pytest
24+ pip install -e .
2525 - name : show package is importable
26- run : |
26+ run : |
2727 python -c "import financepy as fp"
2828 - name : list dependencies
29- run : |
29+ run : |
3030 pip list
3131 - name : unit tests
32- run : |
32+ run : |
3333 pytest -vv
You can’t perform that action at this time.
0 commit comments