File tree 8 files changed +638
-572
lines changed
8 files changed +638
-572
lines changed Original file line number Diff line number Diff line change 43
43
name : dist
44
44
path : dist/
45
45
46
+ tests :
47
+ runs-on : ubuntu-latest
48
+ strategy :
49
+ fail-fast : false
50
+ matrix :
51
+ python-version :
52
+ - " 3.10"
53
+ - " 3.12"
54
+ steps :
55
+ - uses : actions/checkout@v4
56
+ - name : Install Poetry
57
+ run : pipx install poetry
58
+ - name : Set up Python ${{ matrix.python-version }}
59
+ uses : actions/setup-python@v5
60
+ with :
61
+ python-version : " ${{ matrix.python-version }}"
62
+ cache : poetry
63
+ - name : Install dependencies
64
+ run : poetry install -E tests
65
+ - name : Run tests
66
+ id : test
67
+ run : poetry run pytest tests
68
+ - name : Upload generated files
69
+ if : failure() && steps.test.outcome == 'failure' && matrix.python-version == '3.12'
70
+ uses : actions/upload-artifact@v4
71
+ with :
72
+ name : test-generated-files-${{ github.event_name }}
73
+ path : tests/test_question_templates/question_generated_outputs/
74
+ if-no-files-found : ignore
75
+ retention-days : 5
76
+
46
77
build-docs :
47
78
name : Build Docs
48
79
runs-on : ubuntu-latest
@@ -151,6 +182,7 @@ jobs:
151
182
if : github.event_name == 'release' # only publish to PyPI on releases
152
183
# Ensure tests have passed and problem banks can be built
153
184
needs :
185
+ - tests
154
186
- test-dists
155
187
- test-banks
156
188
- build-docs
Original file line number Diff line number Diff line change 17
17
- name : Create GitHub Release
18
18
env :
19
19
GITHUB_TOKEN : ${{ secrets.API_TOKEN_GITHUB }}
20
- run : gh release create '${{ github.ref_name }}' --repo '${{ github.repository }}' --generate-notes
20
+ run : gh release create '${{ github.ref_name }}' --repo '${{ github.repository }}' --generate-notes --latest=false
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ curl --silent https://raw.githubusercontent.com/PrairieLearn/PrairieLearn/master
19
19
sed -i " s/import prairielearn as pl/from . import prairielearn as pl/g" src/problem_bank_scripts/_vendored/python_helper_sympy.py
20
20
21
21
# commit the changes
22
- git add src/problem_bank_scripts/__init__.py tests/test_problem_bank_scripts.py pyproject.toml src/problem_bank_scripts/_vendored/python_helper_sympy.py
22
+ git add pyproject.toml src/problem_bank_scripts/_vendored/python_helper_sympy.py
23
23
git commit -m " Increment version from $FROM to $TO "
24
24
25
25
# create a tag
Original file line number Diff line number Diff line change @@ -12,6 +12,12 @@ Getting started
12
12
13
13
Install the package via pip:
14
14
15
+ .. code-block :: shell
16
+
17
+ pip install " problem_bank_scripts[tui]>=0.12.0rc0"
18
+
19
+ Or, install the latest development version from the repository:
20
+
15
21
.. code-block :: shell
16
22
17
23
pip install " problem_bank_scripts[tui] @ git+https://github.com/open-resources/problem_bank_scripts"
You can’t perform that action at this time.
0 commit comments