Skip to content

Commit

Permalink
IMPORTANT: disable testing on Linux
Browse files Browse the repository at this point in the history
Wheels appear to work on Ubuntu 20.04 but we have no way of testing
using multibuild.

Disabling testing is a short-term fix. A new wheel building+testing
setup is needed.
  • Loading branch information
riddell-stan committed Oct 8, 2020
1 parent ade3313 commit 8a10103
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ function run_tests {
SRC_DIR=httpstan
# remove shared libraries built in-tree. Ensure shared libs in wheel are used
rm -rf ../$SRC_DIR/httpstan/lib
python -m pytest -s -v ../$SRC_DIR/tests
if [ -n "$IS_OSX" ]; then
python -m pytest -s -v -x ../$SRC_DIR/tests
fi
}

function poetry_wheel_cmd {
Expand Down

0 comments on commit 8a10103

Please sign in to comment.