mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
c32bc92f9c
Add end-to-end tests checking that every GraphQL endpoint is properly working and returning the expected result
12 lines
269 B
Bash
Executable File
12 lines
269 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# This file is distributed under the MIT License. See LICENSE.md for details.
|
|
#
|
|
set -euo pipefail
|
|
|
|
DIR=$(dirname "${BASH_SOURCE[0]}")
|
|
|
|
cd "$DIR" || exit 1
|
|
|
|
python3 -m pytest test.py --collect-only | grep -o '<Function.*>' | sed 's|<Function \(.*\)>|\1|g'
|