You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,6 +67,23 @@ flow:
67
67
68
68
You can run the tests locally using pytest. Take a look at the `test`-folder
69
69
70
+
You can follow below steps to setup your virtual environment and run the tests.
71
+
72
+
```bash
73
+
# Go to repo
74
+
cd python-pathfinding
75
+
76
+
# Setup virtual env and activate it - Mac/Linux for windows use source venv/Scripts/activate
77
+
python3 -m venv venv
78
+
source venv/bin/activate
79
+
80
+
# Install test requirements
81
+
pip install -r test/requirements.txt
82
+
83
+
# Run all the tests
84
+
pytest
85
+
```
86
+
70
87
## Contributing
71
88
72
89
Please use the [issue tracker](https://github.com/brean/python-pathfinding/issues) to submit bug reports and feature requests. Please use merge requests as described [here](/CONTRIBUTING.md) to add/adapt functionality.
0 commit comments