repo2docker/tests/conda/repo-path/verify

21 wiersze
574 B
Plaintext

#!/usr/bin/env python
import sys
import os
2019-04-26 14:15:40 +00:00
# conda should still be in /srv/conda
# and Python should still be in $NB_PYTHON_PREFIX
assert sys.executable == os.path.join(
os.environ["NB_PYTHON_PREFIX"], "bin", "python"
), sys.executable
2019-04-26 14:15:40 +00:00
assert sys.executable.startswith("/srv/conda/"), sys.executable
# Repo should be in /srv/repo
assert os.path.exists("/srv/repo/verify")
assert os.path.abspath(__file__) == "/srv/repo/verify"
# Repo should be writable
assert os.access("/srv/repo", os.W_OK)
# We should be able to import the package in environment.yml
import numpy