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.
1 parent 7aaa47c commit 2f12fe8Copy full SHA for 2f12fe8
README.md
@@ -35,10 +35,16 @@ Access from the browser:
35
## Running unit tests
36
Create a Python 2 virtual environment and activate it:
37
```shell
38
-virtualenv -p /usr/bin/python2.7 tests_req
+virtualenv -p /usr/bin/python2.7 tests_venv
39
+source tests_venv/bin/activate
40
+```
41
+
42
+Install test requirements:
43
+```shell
44
+pip install -r test-requirements.txt
45
```
46
47
Run the unit tests directly from **Pycharm** or from the command line:
48
-python -m pytest paht/to/MrBeamPlugin/tests/
49
+python -m pytest tests/
50
0 commit comments