We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c83815 commit d33b981Copy full SHA for d33b981
.travis.yml
@@ -7,7 +7,6 @@ env:
7
- CLANG_VERSION="5.0"
8
9
install:
10
- - bundle install
11
- clang-format-${CLANG_VERSION} -version || true
12
- vim --version
13
- clang-format --version
.gitignore renamed to test/.gitignore
test/README.md
@@ -0,0 +1,23 @@
1
+How to run the tests
2
+====================
3
+
4
+## Prerequisities
5
6
+- Ruby 1.9 or higher
+- Rake
+- Bundler
+## How to run tests
+```
+$ bundle install --path=.bundle
14
+$ rake test
15
16
17
+## How to watch file changes and run tests automatically
18
19
20
+$ rake watch
21
22
23
+It requires guard gem.
test/Rakefile
@@ -1,5 +1,5 @@
task :test do
- sh 'bundle install'
+ sh 'bundle install --path=.bundle'
sh 'bundle exec vim-flavor test'
end
0 commit comments