We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc7833b commit 1e9d51aCopy full SHA for 1e9d51a
.travis.yml
@@ -40,10 +40,11 @@ install:
40
fi
41
- virtualenv --python="$HOME/virtualenv/python3.6/bin/python" "$HOME/virtualenvs/venv-poetry"
42
- $HOME/virtualenvs/venv-poetry/bin/pip install poetry --pre
43
- - $HOME/virtualenvs/venv-poetry/bin/poetry install -v
44
- $HOME/virtualenvs/venv-poetry/bin/poetry build -v
45
- - find dist/ -iname pendulum*.tar.gz -exec pip install -e {} --no-deps \;
46
- - python -c "import pendulum; print(pendulum.__file__)"
+ - |
+ if [ "$PENDULUM_EXTENSIONS" == "1" ]; then
+ find dist/ -iname pendulum*.whl -exec unzip {} 'pendulum/*' -d pendulum/ \;
47
+ fi
48
49
script: pytest --cov=pendulum --cov-config=.coveragerc tests/
50
0 commit comments