X Tutup
Skip to content

Commit eb943a1

Browse files
committed
Move not_impl to extra_tests.
1 parent 2d36e1d commit eb943a1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ flamescope.json
1818
/.cargo/config
1919

2020
extra_tests/snippets/resources
21-
extra_tests/snippets/not_impl.py
21+
extra_tests/not_impl.py

extra_tests/not_impl_gen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,5 +379,5 @@ def remove_one_indent(s):
379379
compare_src = inspect.getsourcelines(compare)[0][1:]
380380
output += "".join(remove_one_indent(line) for line in compare_src)
381381

382-
with open("snippets/not_impl.py", "w") as f:
382+
with open("not_impl.py", "w") as f:
383383
f.write(output + "\n")

whats_left.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ fi
2626
# run whats_left
2727
cargo build --release
2828

29-
cargo run --release -q -- extra_tests/snippets/not_impl.py
29+
cargo run --release -q -- extra_tests/not_impl.py

0 commit comments

Comments
 (0)
X Tutup