We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 161f926 commit 4807e9bCopy full SHA for 4807e9b
script/build
@@ -2,10 +2,13 @@
2
#
3
########################################################################
4
# Integration Build Script
5
+# $1 = all (Run integration tests)
6
7
# Maintainer: id774 <idnanashi@gmail.com>
8
-# v1.1 6/16,2012
9
+# v1.2 6/16,2012
10
+# Add all option for integration tests.
11
+# v1.1 6/14,2012
12
# Correspond to unscaffold subcommand.
13
# v1.0 3/16,2012
14
# First.
@@ -59,12 +62,16 @@ added_tests() {
59
62
test_config log info finished.
60
63
}
61
64
65
+integration() {
66
+ load_tests
67
+ added_tests
68
+}
69
+
70
main() {
71
kickstart
72
exec_rspec
- load_tests
- added_tests
73
+ test -n "$1" && integration
74
75
76
set -ex
-main
77
+main $*
0 commit comments