X-Git-Url: https://git.phdru.name/?p=cookiecutter.git;a=blobdiff_plain;f=project_template%2Fappveyor.yml;h=5c4d648afd459f5222f013c04f2b51f1304fdf3f;hp=6107a563d5a6fb7dfdc690c683dda2ff216faede;hb=8140fff09b51affc770283a412b05abaf177513b;hpb=b2027c2ae3aa07681bd9881b9f3afc173fcd9782 diff --git a/project_template/appveyor.yml b/project_template/appveyor.yml index 6107a56..5c4d648 100644 --- a/project_template/appveyor.yml +++ b/project_template/appveyor.yml @@ -2,11 +2,10 @@ # Heavily inspired by Oliver Grisel's appveyor-demo (https://github.com/ogrisel/python-appveyor-demo) version: '{branch}-{build}' -# Only test maint, master and pull requests; skip tags. +# Only test master and pull requests; skip tags. # Other branches can allow themselves. branches: only: - - maint - master skip_branch_with_pr: false skip_tags: true @@ -73,9 +72,9 @@ install: - "python --version" - "python -c \"import struct; print(struct.calcsize('P') * 8)\"" - "pip --version" - - "pip install tox" + - "pip install tox ppu" -# No build step - _namemapper extension will be built under tox +# No build step - we don't have C extensions build: false test_script: @@ -90,3 +89,6 @@ test_script: #artifacts: # # Archive the generated packages in the ci.appveyor.com build report # - path: dist\* + +after_test: + - "remove-old-files.py -o 180 %LOCALAPPDATA%\\pip\\Cache"