Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,16 +106,19 @@ LabKey Server v15.1 and later.
This package is maintained by [LabKey](http://www.labkey.com/). If you have any questions or need support, please use the [LabKey Server developer support forum](https://www.labkey.org/home/developer/forum/project-start.view).

### Testing
If you are looking to contribute please run the tests before issuing a PR. For now you need to manually get the dependencies:
If you are looking to contribute, please run the test suite before issuing a PR. The following installs the required packages in a virtual environment
and runs the test suite.

```bash
$ pip install mock
$ virtualenv .venv
$ source .venv/bin/activate
(.venv) $ pip install -e '.[testing]'
```

Then, to run the tests:

```bash
$ python test/test_labkey.py
(.venv) $ python test/test_labkey.py
```

### Maintainers
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
packages=packages,
package_data={},
install_requires=['requests'],
tests_require=['requests', 'mock'],
extras_require={ 'testing': ['mock'] },
keywords="labkey api client",
classifiers=[
'Development Status :: 4 - Beta',
Expand Down