File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Fork [moban](https://github.com/moremoban/moban) by clicking "Fork".
8
8
4 . ` source venv/bin/activate `
9
9
5 . ` git clone https://github.com/YOUR_USERNAME/moban.git `
10
10
6 . ` cd moban `
11
- 7 . ` pip3 install -e . `
11
+ 7 . ` pip install -r requirements.txt `
12
12
8 . ` git remote add upstream https://github.com/moremoban/moban.git `
13
13
9 . Type ` git remote -v ` and you should see <br >
14
14
```
@@ -20,7 +20,23 @@ Fork [moban](https://github.com/moremoban/moban) by clicking "Fork".
20
20
21
21
When you want to update your local copy type <br > ` git fetch upstream ` <br > ` git merge upstream/master ` <br > ` git push `
22
22
23
- Steps for creating a Pull Request
23
+ ## Run unit tests
24
+
25
+ 1 . please install unit test requirements:
26
+
27
+ ```
28
+ $ pip install tests/requirements.txt
29
+ ```
30
+
31
+ 2 . Then run
32
+
33
+ ```
34
+ $ make
35
+ ```
36
+
37
+ When you enable travis-ci on your own account, you shall see travis-ci running a build on each of your pushed commit to your own fork.
38
+
39
+ ## Steps for creating a Pull Request
24
40
1 . Checkout to the master branch ` git checkout master `
25
41
3 . Start a new branch with a suitable name ` git checkout -b branch_name `
26
42
4 . Develop a new feature or solve an existing issue
Original file line number Diff line number Diff line change 3
3
coverage
4
4
mock
5
5
flake8
6
+ moban
You can’t perform that action at this time.
0 commit comments