Skip to content

Commit 8686098

Browse files
authored
Update CONTRIBUTING.md
1 parent 6499f8a commit 8686098

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

CONTRIBUTING.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,19 @@
33
## Setup a development environment
44

55
1) First of all make sure to have a 3.x python version installed
6-
2) I suggest to create a python virtual environment
7-
3) Install the library in editing mode and all the test dependencies:
6+
2) Clone the source code:
7+
`git clone git@github.com:MarketSquare/robotframework-requests.git`
8+
3) I suggest to create a python virtual environment:
9+
```sh
10+
cd robotframework-requests/
11+
python -m venv venv
12+
source venv/bin/activate
13+
```
14+
4) Install the library in editing mode and all the test dependencies:
815
`python -m pip install -e .[test]`
9-
4) Run acceptance tests with robot:
16+
5) Run acceptance tests with robot:
1017
`robot ./atests`
11-
5) Run unit tests wiht pytest:
18+
6) Run unit tests wiht pytest:
1219
`pytest ./utests`
1320

1421
If everything went well now you're ready to go!

0 commit comments

Comments
 (0)