2020-08-09 15:35:19 -05:00
|
|
|
name: pytest windows 3.6
|
2020-03-02 07:46:21 -05:00
|
|
|
|
2020-08-12 15:34:54 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
2020-03-02 07:46:21 -05:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-07-28 08:43:25 -05:00
|
|
|
os: [windows-latest]
|
2020-08-09 15:35:19 -05:00
|
|
|
python-version: [3.6]
|
2020-03-02 07:46:21 -05:00
|
|
|
name: Python ${{ matrix.python-version }} ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup conda
|
2020-10-08 13:54:03 -05:00
|
|
|
uses: conda-incubator/setup-miniconda@v1
|
2020-03-02 07:46:21 -05:00
|
|
|
with:
|
|
|
|
activate-environment: ${{matrix.python-version}}-xonsh-test
|
|
|
|
environment-file: ci/environment-${{matrix.python-version}}.yml
|
|
|
|
update-conda: true
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
condarc-file: ci/condarc.yml
|
|
|
|
- shell: bash -l {0}
|
|
|
|
run: |
|
|
|
|
python -m pip install . --no-deps
|
2020-06-13 15:56:39 -04:00
|
|
|
python -m xonsh run-tests.xsh --timeout=240
|
2020-08-09 15:35:19 -05:00
|
|
|
|