aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--appveyor.yml2
-rw-r--r--config.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml
index b52be319..9c185e80 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -126,7 +126,7 @@ test_script:
- mkdir for_testing
- cd for_testing
- python --version
- - python -c "import google.protobuf;"
+ - python -c "from google.protobuf.pyext import _message;"
- cd ..
artifacts:
diff --git a/config.sh b/config.sh
index 55c5adfe..9d9e7483 100644
--- a/config.sh
+++ b/config.sh
@@ -53,5 +53,5 @@ function build_wheel {
function run_tests {
# Runs tests on installed distribution from an empty directory
python --version
- python -c "import google.protobuf;"
+ python -c "from google.protobuf.pyext import _message;"
}