We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46c8471 commit 3499047Copy full SHA for 3499047
Makefile
@@ -29,7 +29,8 @@ test:
29
@echo ""
30
@cd $(TESTDIR); python -c "import $(PROJECT); $(PROJECT).show_versions()"
31
32
- cd $(TESTDIR); pytest $(PYTEST_ARGS) $(PROJECT)
+ cd $(TESTDIR); pytest -m runfirst --no-summary $(PYTEST_ARGS) $(PROJECT)
33
+ cd $(TESTDIR); pytest -m 'not runfirst' $(PYTEST_ARGS) $(PROJECT)
34
cp $(TESTDIR)/coverage.xml .
35
cp -r $(TESTDIR)/htmlcov .
36
rm -r $(TESTDIR)
pygmt/tests/test_grdimage.py
@@ -75,6 +75,7 @@ def test_grdimage_fails():
75
fig.grdimage(np.arange(20).reshape((4, 5)))
76
77
78
+@pytest.mark.runfirst
79
@pytest.mark.mpl_image_compare
80
def test_grdimage_over_dateline(xrgrid):
81
"""
0 commit comments