repo2docker/tests/venv/repo-path/verify

10 wiersze
259 B
Python
Executable File

#!/usr/bin/env python
import sys
import os
# Python should still be in /srv/conda
assert sys.executable == '/srv/conda/bin/python'
# Repo should be in /srv/repo
assert os.path.exists('/srv/repo/verify')
assert os.path.abspath(__file__) == '/srv/repo/verify'