File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Test with the HEAD of docutils
2+
3+ on :
4+ schedule :
5+ - cron : " 0 0 * * SUN"
6+ workflow_dispatch :
7+
8+ jobs :
9+ test :
10+ runs-on : ubuntu-latest
11+
12+ steps :
13+ - uses : actions/checkout@v2
14+ - name : Set up Python
15+ uses : actions/setup-python@v2
16+ - name : Check Python version
17+ run : python --version
18+ - name : Unpin docutils
19+ run : sed -i -e "s/'docutils>=.*'/'docutils'/" setup.py
20+ - name : Install graphviz
21+ run : sudo apt-get install graphviz
22+ - name : Install dependencies
23+ run : pip install -U tox codecov
24+ - name : Run Tox
25+ run : tox -e du-latest -- -vv
Original file line number Diff line number Diff line change @@ -31,6 +31,13 @@ setenv =
3131commands =
3232 python -X dev -m pytest --durations 25 {posargs}
3333
34+ [testenv:du-latest]
35+ commands =
36+ git clone https://repo.or.cz/docutils.git {temp_dir}/docutils
37+ python -m pip install {temp_dir}/docutils/docutils
38+ rm -rf {temp_dir}/docutils
39+ {[testenv]commands}
40+
3441[testenv:flake8]
3542basepython = python3
3643description =
You can’t perform that action at this time.
0 commit comments