aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/config.sh b/config.sh
index 08f1dbc2..1eee65ba 100644
--- a/config.sh
+++ b/config.sh
@@ -4,14 +4,13 @@
function pre_build {
# Any stuff that you need to do before you start building the wheels
# Runs in the root directory of this repository.
- :
+ pwd
+ ls
+ cd python
}
function run_tests {
# Runs tests on installed distribution from an empty directory
- ASTROPY_INSTALL_DIR=$(dirname $(python -c 'import astropy; print(astropy.__file__)'))
-
- # Runs tests on installed distribution from an empty directory
python --version
python -c "import sys; import astropy; sys.exit(astropy.test(remote_data='none'))"
}