mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-21 23:30:58 +00:00
a6fb4a7945
Signed-off-by: Dan Ryan <dan@danryan.co> Fix windows testing Signed-off-by: Dan Ryan <dan@danryan.co> Update runner Signed-off-by: Dan Ryan <dan@danryan.co> Fix powershell script Signed-off-by: Dan Ryan <dan@danryan.co> Fix git ssl issues Signed-off-by: Dan Ryan <dan@danryan.co> Fix test name Signed-off-by: Dan Ryan <dan@danryan.co> Update test publication Signed-off-by: Dan Ryan <dan@danryan.co> Only run py36 py37 and py27 for testing Signed-off-by: Dan Ryan <dan@danryan.co> Enable linux builds Signed-off-by: Dan Ryan <dan@danryan.co> triple parallel Signed-off-by: Dan Ryan <dan@danryan.co> Update linux tests Signed-off-by: Dan Ryan <dan@danryan.co> Make sure home directory exists Signed-off-by: Dan Ryan <dan@danryan.co> Use pipenv to run tests Signed-off-by: Dan Ryan <dan@danryan.co> add vendoring script to linux build scripts Signed-off-by: Dan Ryan <dan@danryan.co> fix vendoring test Signed-off-by: Dan Ryan <dan@danryan.co> Lets try it this way Signed-off-by: Dan Ryan <dan@danryan.co> Syntax issue Signed-off-by: Dan Ryan <dan@danryan.co> Prune vsts-ci folder from manifest Signed-off-by: Dan Ryan <dan@danryan.co> Separate manifest step from vendoring Signed-off-by: Dan Ryan <dan@danryan.co> Update vsts vendoring script Signed-off-by: Dan Ryan <dan@danryan.co> Syntax error.. Signed-off-by: Dan Ryan <dan@danryan.co> fix vendoring Signed-off-by: Dan Ryan <dan@danryan.co> gah wrong version spec! Signed-off-by: Dan Ryan <dan@danryan.co> fix vsts Signed-off-by: Dan Ryan <dan@danryan.co> test updates Signed-off-by: Dan Ryan <dan@danryan.co> VSTS Syntax error... Signed-off-by: Dan Ryan <dan@danryan.co> and fix windows runner Signed-off-by: Dan Ryan <dan@danryan.co> maybe... Signed-off-by: Dan Ryan <dan@danryan.co> does this one work? Signed-off-by: Dan Ryan <dan@danryan.co> how about now Signed-off-by: Dan Ryan <dan@danryan.co> fix manifest Signed-off-by: Dan Ryan <dan@danryan.co> hmm now windows fails? Signed-off-by: Dan Ryan <dan@danryan.co> hmmmm... Signed-off-by: Dan Ryan <dan@danryan.co> Conditonal testing uses its own special phase Signed-off-by: Dan Ryan <dan@danryan.co>
40 lines
1.0 KiB
YAML
40 lines
1.0 KiB
YAML
parameters:
|
|
queue:
|
|
|
|
phases:
|
|
- phase: Vendor_Scripts
|
|
displayName: Test Vendor Scripts
|
|
|
|
queue:
|
|
name: ${{ parameters.queue }}
|
|
parallel: 4
|
|
matrix:
|
|
${{ if eq(parameters.queue, 'Hosted VS2017') }}:
|
|
# TODO remove once Hosted VS2017 has Python 3.7
|
|
Python37:
|
|
python.version: '>= 3.7.0-b2'
|
|
python.architecture: x64
|
|
${{ if ne(parameters.queue, 'Hosted VS2017' )}}:
|
|
Python37:
|
|
python.version: '>= 3.7'
|
|
python.architecture: x64
|
|
steps:
|
|
- task: UsePythonVersion@0
|
|
displayName: Use Python $(python.version)
|
|
inputs:
|
|
versionSpec: '$(python.version)'
|
|
architecture: '$(python.architecture)'
|
|
|
|
- template: ../steps/install-dependencies.yml
|
|
|
|
- bash: |
|
|
mkdir -p "$AGENT_HOMEDIRECTORY/.virtualenvs"
|
|
mkdir -p "$WORKON_HOME"
|
|
pip install certifi
|
|
export GIT_SSL_CAINFO=$(python -m certifi)
|
|
export LANG=C.UTF-8
|
|
python -m pip install --upgrade invoke requests parver
|
|
python -m invoke vendoring.update
|
|
|
|
- template: ./run-manifest-check.yml
|