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 ea2c38c commit 49ebf7bCopy full SHA for 49ebf7b
Makefile
@@ -19,6 +19,10 @@ format-check:
19
yapf --diff $(SRCS) \
20
|| (echo "Some files require formatting. Run 'make format' to fix." && exit 1)
21
22
+.PHONY: clean
23
+clean:
24
+ git clean -Xfd
25
+
26
ifndef VERBOSE
27
.SILENT:
28
endif
test_something.py
@@ -1,3 +1,3 @@
1
def test_something_pass():
2
value = "foo"
3
- assert value == "foo"
+ assert value == "foo"
0 commit comments