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.
2 parents fb467aa + 47a8cdc commit 968ba4eCopy full SHA for 968ba4e
CONTRIBUTING.md
@@ -23,6 +23,10 @@ Anything else - [search open issues](https://github.com/github/markup/issues) or
23
5. Open a [Pull Request][1]
24
6. Enjoy a refreshing Diet Coke and wait
25
26
+**dependencies**
27
+
28
+You can run `script/bootstrap.contrib` to fetch them all.
29
30
## Testing
31
32
To run the tests:
script/bootstrap.contrib
@@ -0,0 +1,15 @@
1
+#!/bin/bash
2
3
+set -e
4
5
+cd $(dirname "$0")/..
6
7
+bundle install --path vendor/bundle
8
+virtualenv vendor/python && source vendor/python/bin/activate
9
+pip install docutils
10
11
+echo ""
12
+echo "*** DONE ***"
13
14
+echo "activate python environment with 'source vendor/python/bin/activate'"
15
+echo "run tests with 'bundle exec rake'"
0 commit comments