Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
2fb7a4a
Add Links section to README
pwlandoll May 6, 2019
6373e25
fixes #242, deletes link to Jinja 1 docs.
brownterryn May 6, 2019
323e892
Add new maintenance branch format to Travis (#987)
kevin-brown May 7, 2019
67e2542
Merge pull request #988 from tbnorth/triv_docs_link
kevin-brown May 11, 2019
e632dc5
adds documentation on use of python methods in expressions
shamsimam May 31, 2019
4965fac
docs: Python3-ize the examples
dvamin May 31, 2019
7a6f97c
Merge pull request #1010 from dvamin/master
davidism May 31, 2019
273d8b1
issue-423 remind not to put block in if statements in doc
yongbozhang May 31, 2019
22e0bfc
Merge pull request #1012 from yongbozhang/issue-423
jab Jun 6, 2019
4ce2449
Merge pull request #1009 from shamsimam/doc-python-methods
jab Jun 6, 2019
593ee1e
Import abstract base classes from collections.abc
The-Compiler Jun 27, 2018
4b1cae9
Add python 3.7 deprecation warning fix to changelog
jbarreneche Jun 18, 2019
0f5f201
Merge pull request #1019 from jbarreneche/backport-python3.7-collecti…
davidism Jun 18, 2019
d04d999
switch tests to azure pipelines
davidism Jul 20, 2019
94cecd4
ignore coverage parse errors
davidism Jul 20, 2019
c61b366
Register custom test category markers.
rillian Jul 4, 2019
6661be0
warnings are errors during tests
davidism Jul 20, 2019
e74640b
Merge pull request #1030 from rillian/PytestUnknownMarkWarning
davidism Jul 20, 2019
35fcd9f
sandbox uses xrange on Python 2
pbjr23 May 6, 2019
219b8a3
Merge pull request #986 from pbjr23/fix-safe-range-memory
davidism Jul 22, 2019
5b2b7ca
Merge pull request #981 from pwlandoll/2.10.x
davidism Jul 22, 2019
f77b09d
modernize docs config, use pallets-sphinx-themes
davidism Jul 24, 2019
0669656
fix linkcheck issues
davidism Jul 26, 2019
90756da
reformat readme
davidism Jul 26, 2019
908726c
Merge pull request #1042 from pallets/docs
davidism Jul 26, 2019
288dd42
Merge branch '2.9.x' into docs
davidism Jul 26, 2019
d601b3f
fix tox docs build
davidism Jul 26, 2019
3a86ef3
Fix TracebackFrameProxy.set_next() on Python 3.7
vstinner Aug 19, 2019
72fffe4
Merge pull request #1051 from vstinner/tb_next_py37
davidism Sep 4, 2019
65da441
update project metadata
davidism Oct 4, 2019
0fee409
release version 2.10.2
davidism Oct 4, 2019
218e77d
Fix typo in setup.py
ThiefMaster Oct 4, 2019
c6a71f9
release version 2.10.3
davidism Oct 4, 2019
5aa1ae5
Always include context in macros
tdhooper May 7, 2019
739b634
Bump version to 2.10.3+lastfm
tdhooper May 7, 2019
0df4343
Add Jenkins file
johngeoffrey Apr 23, 2021
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
61 changes: 61 additions & 0 deletions .azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
trigger:
- master
- '*.x'

variables:
vmImage: ubuntu-latest
python.version: 3.7
TOXENV: py,coverage-ci
hasTestResults: true

strategy:
matrix:
Python 3.7 Linux:
vmImage: ubuntu-latest
Python 3.7 Windows:
vmImage: windows-latest
Python 3.7 Mac:
vmImage: macos-latest
PyPy 3 Linux:
python.version: pypy3
Python 3.6 Linux:
python.version: 3.6
Python 3.5 Linux:
python.version: 3.5
Python 2.7 Linux:
python.version: 2.7
Python 2.7 Windows:
python.version: 2.7
vmImage: windows-latest
Docs:
TOXENV: docs-html
hasTestResults: false

pool:
vmImage: $[ variables.vmImage ]

steps:
- task: UsePythonVersion@0
inputs:
versionSpec: $(python.version)
displayName: Use Python $(python.version)

- script: pip --disable-pip-version-check install -U tox
displayName: Install tox

- script: tox -s false -- --junit-xml=test-results.xml
displayName: Run tox

- task: PublishTestResults@2
inputs:
testResultsFiles: test-results.xml
testRunTitle: $(Agent.JobName)
condition: eq(variables['hasTestResults'], 'true')
displayName: Publish test results

- task: PublishCodeCoverageResults@1
inputs:
codeCoverageTool: Cobertura
summaryFileLocation: coverage.xml
condition: eq(variables['hasTestResults'], 'true')
displayName: Publish coverage results
11 changes: 0 additions & 11 deletions .coveragerc

This file was deleted.

45 changes: 0 additions & 45 deletions .travis.yml

This file was deleted.

34 changes: 0 additions & 34 deletions AUTHORS

This file was deleted.

Loading