File tree Expand file tree Collapse file tree 3 files changed +16
-6
lines changed
Expand file tree Collapse file tree 3 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 2323
2424 - name : Install dependencies
2525 run : |
26- python3 -m pip install --upgrade pip
27- python3 -m pip install .[test]
28- python3 -m pip install -e .
2926 # Dependencies for tutorials
30- python3 -m pip install jupyter pandas ezyrb opencv-python ffmpeg-python black[jupyter]
27+ python3 -m pip install --upgrade pip .[tutorial] black[jupyter]
3128
3229 - uses : actions/cache@v2
3330 id : cache-segtrackv2
Original file line number Diff line number Diff line change @@ -234,9 +234,15 @@ Do you want to join the team? Read the [Contributing guidelines](.github/CONTRIB
234234Made with [ contrib.rocks] ( https://contrib.rocks ) .
235235
236236### Testing
237- We use ` pytest ` to run our unit tests. You can run the whole test suite by using the following command in the base directory of the repository:
237+ We use ` pytest ` to run our unit tests. Use the following command to install the dependencies required to test a local clone of PyDMD (assuming
238+ the relative path of the repository to be ` ./PyDMD/ ` ):
238239``` bash
239- pytest
240+ python -m pip install PyDMD/[test]
241+ ```
242+
243+ You can run the whole test suite by using the following command in the base directory of the repository:
244+ ``` bash
245+ python -m pytest
240246```
241247
242248## Funding
Original file line number Diff line number Diff line change @@ -44,6 +44,13 @@ test = [
4444 " pytest-mock" ,
4545 " ezyrb>=v1.2.1.post2205"
4646]
47+ tutorial = [
48+ " jupyter" ,
49+ " pandas" ,
50+ " ezyrb" ,
51+ " opencv-python" ,
52+ " ffmpeg-python" ,
53+ ]
4754docs = [
4855 " sphinx>=1.4" ,
4956 " sphinx_rtd_theme"
You can’t perform that action at this time.
0 commit comments