6 lines
111 B
Bash
Executable File
6 lines
111 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
cd "$(dirname $(dirname "$0"))" || exit
|
|
|
|
OPENWEATHER_KEY="" poetry run pytest tests
|