File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -138,6 +138,26 @@ jobs:
138
138
- run : pip install .
139
139
- run : python -m flint.test --verbose
140
140
141
+ # Run SymPy test suite against python-flint master
142
+ test_sympy :
143
+ name : Test SymPy ${{ matrix.sympy-version }}
144
+ runs-on : ubuntu-24.04
145
+ strategy :
146
+ fail-fast : false
147
+ matrix :
148
+ sympy-version : ['1.13.1']
149
+ steps :
150
+ - uses : actions/checkout@v4
151
+ - uses : actions/setup-python@v5
152
+ with :
153
+ python-version : ' 3.12'
154
+ - run : sudo apt-get update
155
+ - run : sudo apt-get install libflint-dev
156
+ - run : pip install .
157
+ - run : pip install pytest pytest-xdist hypothesis
158
+ - run : pip install sympy==${{ matrix.sympy-version }}
159
+ - run : python -c 'import sympy; sympy.test(parallel=True)'
160
+
141
161
# For older Ubuntu we have to build Flint >= 3.0.0
142
162
test_flint_versions :
143
163
name : Test flint ${{ matrix.flint-tag }}
You can’t perform that action at this time.
0 commit comments