Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
amyasnikov committed Sep 21, 2024
1 parent 93c84e4 commit 6d06a54
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/entities/scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ The script also performs a bunch of auxiliary actions such as:
* Related Data Sources Sync (if requested from user)
* Deletion of old Reports and Tests Results (see [store_reports](../installation/plugin_settings.md#store_reports) setting)

!!! note
Make sure you've added proper permissions to execute RunTests script for your non-superuser account. Running the script requires `validity.run_compliancetest` permission. Such permission can be created via the following pynetbox call:

```python
nb.users.permissions.create(
name='validity_runtests',
object_types=["validity.compliancetest"],
actions=["run"],
)
```

### Parallel Tests Execution

Expand Down

0 comments on commit 6d06a54

Please sign in to comment.