Skip to content

Commit e4afb0a

Browse files
authored
DOC: Remove make test (mne-tools#12042)
1 parent 56587f3 commit e4afb0a

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

Makefile

-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ sample_data:
3333
testing_data:
3434
@python -c "import mne; mne.datasets.testing.data_path(verbose=True);"
3535

36-
pytest: test
37-
3836
test-no-network: in
3937
sudo unshare -n -- sh -c 'MNE_SKIP_NETWORK_TESTS=1 py.test mne'
4038

doc/install/advanced.rst

+8
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,14 @@ or by doing
209209
:func:`mne.viz.set_3d_options(antialias=False) <mne.viz.set_3d_options>` within
210210
a given Python session.
211211

212+
Some hardware-accelerated graphics on linux (e.g., some Intel graphics cards)
213+
provide an insufficient implementation of OpenGL, and in those cases it can help to
214+
force software rendering instead with something like:
215+
216+
.. code-block:: console
217+
218+
$ export LIBGL_ALWAYS_SOFTWARE=true
219+
212220
Another issue that may come up is that the MESA software itself may be out of date
213221
in certain operating systems, for example CentOS. This may lead to incomplete
214222
rendering of some 3D plots. A solution is described in this `Github comment <https://github.com/mne-tools/mne-python/issues/7977#issuecomment-729921035>`_.

doc/install/contributing.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ Running the test suite
872872
The ``--pdb`` flag will automatically start the python debugger upon test
873873
failure.
874874

875-
The full test suite can be run by calling ``make test`` from the
875+
The full test suite can be run by calling ``pytest -m "not ultraslowtest" mne`` from the
876876
``mne-python`` root folder. Testing the entire module can be quite
877877
slow, however, so to run individual tests while working on a new feature, you
878878
can run the following line::

0 commit comments

Comments
 (0)