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
* Add integration marker and integration test suite
* remove coverage from default pytest options
it prevents us from being able to use the Python Debugger in Intellij/PyCharm
* Fix typo
* Add option to disable CSRF to ServerContext
- Remove global DISABLE_CSRF_CHECK
- Explicitly define args/kwargs for ServerContext, effectively making create_server_context useless. Will deprecate and remove at a later date.
* Add dataset test fixture, create_dataset and create_dupicate_dataset tests
* Add container.py
Users can now create and delete containers with the python API
* Upper case constants
* Add study creation code to test_integration.py
* add unit tests for endpoint testing of qc states
* Clean up test_integration.py
* Use python naming conventions in query_examples.py
* Use python naming conventions in test_integration.py
* use python naming conventions in sample files
* Read properties file from TC during integration tests
* Fix copy/paste error
Co-authored-by: Alan Vezina <[email protected]>
Co-authored-by: Trey Chadick <[email protected]>
Copy file name to clipboardExpand all lines: README.md
+7
Original file line number
Diff line number
Diff line change
@@ -125,5 +125,12 @@ Then, the tests can be run with
125
125
$ pytest .
126
126
```
127
127
128
+
The integration tests do not run by default. If you want to run the integration tests make sure you have a live server
129
+
running, a netrc file, and run the following command:
130
+
131
+
```bash
132
+
$ pytest . -m "integration"
133
+
```
134
+
128
135
### Maintainers
129
136
Package maintainer's can reference the [Python Package Maintenance](https://docs.google.com/document/d/13nVxwyctH4YZ6gDhcrOu9Iz6qGFPAxicE1VHiVYpw9A/) document (requires permission) for updating releases.
0 commit comments