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
Alternatively, you can use [Poetry](https://python-poetry.org/docs/) to setup a virtual environment
297
304
298
-
To run unit tests, run:
299
305
```bash
306
+
poetry install
307
+
# If you run into issues install numpy or pandas, run
308
+
# poetry run pip install numpy pandas
309
+
# then re-run poetry install
310
+
```
311
+
312
+
3. Run unit tests, with `pytest`
313
+
314
+
```bash
315
+
# if you don't have pytest and mock installed, run
316
+
# pip install pytest mock
300
317
pytest
301
318
```
319
+
320
+
If you installed packages with Poetry, run
321
+
```bash
322
+
poetry run pytest
323
+
```
324
+
302
325
If you want to see an enhancement made but don't have time to work on it yourself, feel free to submit an [issue](https://github.com/jupyter-incubator/sparkmagic/issues) for us to deal with.
0 commit comments