Browse Source

Updated README with proper development instructions

Stan Janssen 4 years ago
parent
commit
4c3e53ce2e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -21,11 +21,11 @@ git clone https://github.com/openleadr/openleadr-python
 cd openleadr-python
 cd openleadr-python
 python3 -m venv python_env
 python3 -m venv python_env
 ./python_env/bin/pip3 install -e .
 ./python_env/bin/pip3 install -e .
+./python_env/bin/pip3 install -r dev_requirements.txt
 ```
 ```
 
 
 ## Running conformance tests
 ## Running conformance tests
 
 
 ```bash
 ```bash
-./python_env/bin/pip3 install pytest pytest-asyncio
 ./python_env/bin/python3 -m pytest test/conformance
 ./python_env/bin/python3 -m pytest test/conformance
 ```
 ```