File tree 4 files changed +12
-2
lines changed
4 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 17
17
- run : >
18
18
PATH=$HOME/miniconda3/envs/pandas-dev/bin:$HOME/miniconda3/condabin:$PATH
19
19
LD_PRELOAD=$HOME/miniconda3/envs/pandas-dev/lib/libgomp.so.1:$LD_PRELOAD
20
+ sudo apt-get update && sudo apt-get install -y libegl1 libopengl0
20
21
ci/run_tests.sh
21
22
linux-musl :
22
23
docker :
Original file line number Diff line number Diff line change 51
51
# TODO: The doctests have to be run first right now, since the Cython doctests only work
52
52
# with pandas installed in non-editable mode
53
53
# This can be removed once pytest-cython doesn't require C extensions to be installed inplace
54
+
55
+ - name : Extra installs
56
+ # https://pytest-qt.readthedocs.io/en/latest/troubleshooting.html#github-actions-azure-pipelines-travis-ci-and-gitlab-ci-cd
57
+ run : sudo apt-get update && sudo apt-get install -y libegl1 libopengl0
58
+
54
59
- name : Run doctests
55
60
run : cd ci && ./code_checks.sh doctests
56
61
if : ${{ steps.build.outcome == 'success' && always() }}
Original file line number Diff line number Diff line change 46
46
- name : Build Pandas
47
47
uses : ./.github/actions/build_pandas
48
48
49
+ - name : Extra installs
50
+ # https://pytest-qt.readthedocs.io/en/latest/troubleshooting.html#github-actions-azure-pipelines-travis-ci-and-gitlab-ci-cd
51
+ run : sudo apt-get update && sudo apt-get install -y libegl1 libopengl0
52
+
49
53
- name : Test website
50
54
run : python -m pytest web/
51
55
Original file line number Diff line number Diff line change @@ -159,8 +159,8 @@ jobs:
159
159
fetch-depth : 0
160
160
161
161
- name : Extra installs
162
- run : sudo apt-get update && sudo apt-get install -y ${{ matrix.extra_apt }}
163
- if : ${{ matrix.extra_apt }}
162
+ # https://pytest-qt.readthedocs.io/en/latest/troubleshooting.html#github-actions-azure-pipelines-travis-ci-and-gitlab-ci-cd
163
+ run : sudo apt-get update && sudo apt-get install -y libegl1 libopengl0 ${{ matrix.extra_apt || '' }}
164
164
165
165
- name : Generate extra locales
166
166
# These extra locales will be available for locale.setlocale() calls in tests
You can’t perform that action at this time.
0 commit comments