Add test script (#451)
This commit is contained in:
parent
49ed77a706
commit
5e4f54d643
@ -100,6 +100,14 @@ You can also run a single test script like this:
|
||||
$ nox -s test -- tests/test_multipart.py
|
||||
```
|
||||
|
||||
Lastly, to ensure you're on track to pass the CI build, run:
|
||||
|
||||
```shell
|
||||
$ scripts/test
|
||||
```
|
||||
|
||||
This command is a light wrapper around `nox` that will run code style checks and test the code against all installed Python versions.
|
||||
|
||||
## Documenting
|
||||
|
||||
Documentation pages are located under the `docs/` folder.
|
||||
|
||||
6
scripts/test
Executable file
6
scripts/test
Executable file
@ -0,0 +1,6 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
set -x
|
||||
|
||||
nox -s check
|
||||
nox -s test
|
||||
Loading…
Reference in New Issue
Block a user