Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Nov 23, 2023
1 parent 123e6d6 commit 4e2b3f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -293,11 +293,12 @@ Prerequisite: `arangorestore`
6. (create an ArangoDB instance with method of choice)
7. `pytest --url <> --dbName <> --username <> --password <>`

**Note**: A `pytest` parameter can be omitted if the endpoint is using its default value:
**Note**: `pytest` parameters:
```python
def pytest_addoption(parser):
parser.addoption("--url", action="store", default="http://localhost:8529")
parser.addoption("--dbName", action="store", default="_system")
parser.addoption("--username", action="store", default="root")
parser.addoption("--password", action="store", default="")
parser.addoption("--otlp_endpoint", action="append", default=[]) # OpenTelemetry Protocol Exporter endpoint
```

0 comments on commit 4e2b3f0

Please sign in to comment.