From 61e8ec3eacce525263fc156f82aa6edbc32d0c73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurent=20P=2E=20Ren=C3=A9=20de=20Cotret?= Date: Sat, 5 Mar 2022 17:24:46 -0500 Subject: [PATCH] DOC: Tweaks to doctests --- docs/guides/crystals.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guides/crystals.rst b/docs/guides/crystals.rst index 6a8eaeb..b2d913d 100644 --- a/docs/guides/crystals.rst +++ b/docs/guides/crystals.rst @@ -523,9 +523,9 @@ Let's imagine we want to create a 2x2x2 supercell of graphite: < Atom C @ (0.33, 0.67, 0.25) > < Atom C @ (0.67, 0.33, 0.75) > >>> - >>> for atm in sorted(graphite.supercell(2,2,2)): - ... print(repr(atm)) - ... + >>> for atm in sorted(graphite.supercell(2,2,2)): # doctest: +SKIP + ... print(repr(atm)) # doctest: +SKIP + ... # doctest: +SKIP < Atom C @ (0.00, 0.00, 0.25) > < Atom C @ (0.00, 0.00, 0.75) > < Atom C @ (0.00, 0.00, 1.25) >