ソースを参照

Use correct environment variable to see if we're testing PyPy.

Omer Katz 8 年 前
コミット
d8c5cfe663
1 ファイル変更1 行追加1 行削除
  1. 1 1
      .travis.yml

+ 1 - 1
.travis.yml

@@ -18,7 +18,7 @@ env:
     - TOXENV=configcheck
 before_install:
     - |
-          if [ "$TRAVIS_PYTHON_VERSION" = "pypy" ]; then
+          if [ "$TOXENV" = "pypy" ]; then
             export PYENV_ROOT="$HOME/.pyenv"
             if [ -f "$PYENV_ROOT/bin/pyenv" ]; then
               cd "$PYENV_ROOT" && git pull