File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ You may be asking:
14
14
15
15
## Getting started
16
16
17
- ### Requirements
17
+ ### Pre-requirements
18
18
19
19
#### Python
20
20
@@ -37,6 +37,7 @@ $ python -m venv .venv
37
37
$ source .venv/bin/activate
38
38
# Bundle all your dependencies into `bin/` before deploying!
39
39
# Skip it if you're not building an app.
40
+ # Use `splunk-sdk[compat]` if you encounter issues with `six` when deploying to Splunk.
40
41
$ python -m pip install splunk-sdk --target bin/
41
42
```
42
43
@@ -179,9 +180,9 @@ A file called `.env.template` exists in the root of this repository. Duplicate i
179
180
180
181
``` sh
181
182
# Run entire test suite:
182
- make test
183
+ $ make test
183
184
# Run only the unit tests:
184
- make test-unit
185
+ $ make test-unit
185
186
```
186
187
187
188
##### Integration tests
@@ -191,10 +192,10 @@ make test-unit
191
192
``` sh
192
193
# This command starts a Splunk Docker container
193
194
# and waits until it reaches an operational state.
194
- SPLUNK_VERSION=latest make docker-start
195
+ $ SPLUNK_VERSION=latest make docker-start
195
196
196
197
# Run the integration tests:
197
- make test-integration
198
+ $ make test-integration
198
199
```
199
200
200
201
> Do not run the test suite against a production instance of Splunk! It will run just fine with the free Splunk license.
You can’t perform that action at this time.
0 commit comments