#!/usr/bin/env bash

# Exit immediately if a command exits with a non-zero status
set -e

# Run pytest using a single call to run_in_container
echo "Running tests..."
bash ./run_in_container pytest "$@"

# If pytest passes, print a success message
echo "All tests passed successfully!"
