Files
docker-stacks/tests/docker-stacks-foundation/run-hooks-failures/b.py
2023-09-04 19:50:30 +04:00

13 lines
253 B
Python
Executable File

#!/usr/bin/env python3
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
import os
import sys
print("Started: b.py")
print(f"OTHER_VAR={os.environ['OTHER_VAR']}")
sys.exit(1)
print("Finished: b.py")