mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 00:14:41 +01:00

* feat: add grouped-settings for env variables fixes #4014 style: fix mypy errors chore: update testing requirements versions fix: update xonsh.tools import error * chore: add news item * fix: update Var.with_default handling env defaults * fix: set env var.doc_default=DefaultNotGiven there is a custom handler for it * chore: update travis speedup docs generation * chore: add command to serve docs during development * docs: add jinja2 helpers/renderers extension for sphinx * docs: update envvars document * docs: fix docs failing * Update xonsh/environ.py commit suggestion Co-authored-by: Gil Forsyth <gforsyth@users.noreply.github.com> * Update xonsh/environ.py Co-authored-by: Gil Forsyth <gforsyth@users.noreply.github.com> * Update xonsh/environ.py Co-authored-by: Gil Forsyth <gforsyth@users.noreply.github.com> * Update xonsh/environ.py Co-authored-by: Gil Forsyth <gforsyth@users.noreply.github.com> * Update xonsh/environ.py Co-authored-by: Gil Forsyth <gforsyth@users.noreply.github.com> * Update xonsh/environ.py Co-authored-by: Gil Forsyth <gforsyth@users.noreply.github.com> * refactor: update rst-extension Co-authored-by: Gil Forsyth <gforsyth@users.noreply.github.com>
30 lines
832 B
YAML
30 lines
832 B
YAML
language: python
|
|
env:
|
|
global:
|
|
- secure: "pvQHCsdcIRjwNvsBrZxP8cZWEwug0+PLg1T8841ZLkMdCaO3YheqmxF1xGjAqty6hLppz6vX1LFEKmPjKurLL0/i+be6MhT8/ZikFpSan7TdNUqISxeFx31ls+QpuFKzCV7ZEx7C1ms8LPWEGmzMMN6bCtOBVtGznD9KKWZmLlA="
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
python: 3.8
|
|
env:
|
|
- BUILD_DOCS=true
|
|
|
|
install:
|
|
- pip install --upgrade -r requirements/docs.txt
|
|
- pip install .
|
|
|
|
script:
|
|
- set -ex
|
|
- if [[ $BUILD_DOCS = true ]]; then
|
|
cd docs;
|
|
make html;
|
|
cd ..;
|
|
doctr deploy --deploy-repo xonsh/xonsh-docs dev;
|
|
git checkout $(git describe --tags `git rev-list --tags --max-count=1`);
|
|
git clean -fdx;
|
|
pip install --upgrade --force-reinstall .;
|
|
cd docs;
|
|
make clean html;
|
|
cd ..;
|
|
doctr deploy --deploy-repo xonsh/xonsh-docs .;
|
|
fi
|