forked from jbn/nbmerge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cli_tests.sh
executable file
·77 lines (53 loc) · 2.18 KB
/
cli_tests.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/bin/bash
set -ev # Fail on first non-zero return value.
###############################################################################
# Explicit file paths, explicit output.
###############################################################################
nbconcat \
tests/fixtures/1_Intro.ipynb \
tests/fixtures/2_Middle.ipynb \
tests/fixtures/3_Conclusion.ipynb \
-o cli_test.ipynb
cmp cli_test.ipynb tests/fixtures/_gold.ipynb
rm cli_test.ipynb
###############################################################################
# Explicit file paths, stdout.
###############################################################################
nbconcat \
tests/fixtures/1_Intro.ipynb \
tests/fixtures/2_Middle.ipynb \
tests/fixtures/3_Conclusion.ipynb \
> cli_test.ipynb
cmp cli_test.ipynb tests/fixtures/_gold.ipynb
rm cli_test.ipynb
###############################################################################
# Recursive with a regexp, to stdout.
###############################################################################
nbconcat \
--recursive -i \
-p "(1_Intro|2_Middle|3_Conclusion)\.ipynb" \
> cli_test.ipynb
cmp cli_test.ipynb tests/fixtures/_gold.ipynb
###############################################################################
# Recursive with a regexp, explicit output.
###############################################################################
nbconcat \
--recursive -i \
-p "(1_Intro|2_Middle|3_Conclusion)\.ipynb" \
-o cli_test.ipynb
cmp cli_test.ipynb tests/fixtures/_gold.ipynb
rm cli_test.ipynb
###############################################################################
# Recursive with a regexp and explict input, explicit output.
###############################################################################
nbconcat \
--recursive -i \
-p "(2_Middle|3_Conclusion)\.ipynb" \
-o cli_test.ipynb \
tests/fixtures/1_Intro.ipynb
cmp cli_test.ipynb tests/fixtures/_gold.ipynb
rm cli_test.ipynb
###############################################################################
# When called without any arguments, nbconcat should emit a usage message.
###############################################################################
(! nbconcat ) | grep -q usage