We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1b202a commit 2402fe7Copy full SHA for 2402fe7
tests/test_chapter_18_spiking_custom_auth.py
@@ -1,4 +1,5 @@
1
#!/usr/bin/env python3
2
+import os
3
import unittest
4
5
from book_tester import ChapterTest
@@ -29,8 +30,7 @@ def test_listings_and_commands_and_output(self):
29
30
self.prep_database()
31
32
# hack fast-forward
- skip = True
33
- if skip:
+ if os.environ.get("SKIP"):
34
self.pos = 38
35
self.sourcetree.run_command(
36
"git checkout {}".format(self.sourcetree.get_commit_spec("ch18l020"))
0 commit comments