annotate appveyor.yml @ 1145:e94737572542

serve: Fix an issue where false positive matches were rendered as the requested page. Now we try to render the page, but also try to detect for the most common "empty" pages.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 05 Jun 2018 22:08:51 -0700
parents 783ff8bc4e03
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
672
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
1 environment:
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
2 matrix:
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
3 - PYTHON: "C:\\Python34"
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
4 - PYTHON: "C:\\Python34-x64"
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
5 - PYTHON: "C:\\Python35"
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
6 - PYTHON: "C:\\Python35-x64"
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
7
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
8 install:
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
9 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
10 - "pip install -r requirements.txt"
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
11 - "pip install -r dev-requirements.txt"
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
12
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
13 build: off
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
14
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
15 test_script:
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
16 - "py.test"
783ff8bc4e03 cm: Add AppVeyor support.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
17