Skip to content

Makefile fixes #713

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 23, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Do not use make build on Travis
Travis is giving us a Python executable that it's already inside a virtualenv.
So, using that executable to create another virtualenv does not work properly
and all the packages are installed in the original virtualenv instead in the one
created by the Makefile; which makes packages to not be found at `venv/bin/`.

I'm using Travis `script` option to call the commands that we need just using
the virtualenv they provide to us instead of calling `make build`.
  • Loading branch information
humitos committed Aug 23, 2020
commit 9b8092eeb1ccaf2d30103e3fd57b0c5fba35c06f
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ script:
- powrap --check --quiet **/*.po
- awk 1 dict dictionaries/*.txt > dict.txt
- pospell -p dict.txt -l es_AR -l es_ES **/*.po
- make build
- pip install -q -r requirements.txt
- PYTHONWARNINGS=ignore::FutureWarning sphinx-build -j auto -W --keep-going -b html -d cpython/Doc/_build/doctree -D language=es . cpython/Doc/_build/html
branches:
only:
- /^3\.\d$/