File tree 2 files changed +17
-1
lines changed
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -138,6 +138,23 @@ jobs:
138
138
- run : pip install .
139
139
- run : python -m flint.test --verbose
140
140
141
+ # Test that we can still make a coverage build with setuptools.
142
+ test_coverage_setuptools :
143
+ name : Test coverage setuptools build
144
+ runs-on : ubuntu-24.04
145
+ steps :
146
+ - uses : actions/checkout@v4
147
+ - uses : actions/setup-python@v5
148
+ with :
149
+ python-version : ' 3.12'
150
+ - run : sudo apt-get update
151
+ - run : sudo apt-get install libflint-dev
152
+ - run : pip install cython setuptools coverage
153
+ - run : bin/coverage.sh
154
+ env :
155
+ PYTHONPATH : src
156
+ - run : coverage report --sort=cover
157
+
141
158
# Run SymPy test suite against python-flint master
142
159
test_sympy :
143
160
name : Test SymPy ${{ matrix.sympy-version }}
Original file line number Diff line number Diff line change 103
103
("flint.types.fmpz_mod_mat" , ["src/flint/types/fmpz_mod_mat.pyx" ]),
104
104
105
105
("flint.types.fmpq_mpoly" , ["src/flint/types/fmpq_mpoly.pyx" ]),
106
- ("flint.types.fmpz_mpoly_q" , ["src/flint/types/fmpz_mpoly_q.pyx" ]),
107
106
108
107
("flint.types.fq_default" , ["src/flint/types/fq_default.pyx" ]),
109
108
You can’t perform that action at this time.
0 commit comments