From 3bb4273af8f983caf6b3547f8ae60cfc167b0187 Mon Sep 17 00:00:00 2001
From: Stephan Seitz <stephan.seitz@fau.de>
Date: Mon, 22 Jun 2020 15:55:48 +0200
Subject: [PATCH] Skip 01_tutorial_getting_started if graphviz is not installed

---
 conftest.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/conftest.py b/conftest.py
index eba25a742..cb17c79b1 100644
--- a/conftest.py
+++ b/conftest.py
@@ -85,6 +85,7 @@ try:
     import graphviz
 except ImportError:
     collect_ignore += [os.path.join(SCRIPT_FOLDER, "pystencils/backends/dot.py")]
+    collect_ignore += [os.path.join(SCRIPT_FOLDER, "doc/notebooks/01_tutorial_getting_started.ipynb")]
 
 try:
     import pyevtk
-- 
GitLab