mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-22 16:03:00 +08:00
12 lines
211 B
Bash
Executable file
12 lines
211 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
export TESTING=True
|
|
pytest felicity --asyncio-mode=strict "${@}"
|
|
export TESTING=False
|
|
|
|
|
|
# manual
|
|
# export TESTING=True && pytest felicity/tests/unit --asyncio-mode=strict -x
|