Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
42 changes: 42 additions & 0 deletions .github/workflows/cron.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Run a nightly test against unpinned conda environment
name: Cron

on:
schedule:
- cron: "0 0 * * *"

jobs:
test:
name: ${{ matrix.CONDA_ENV }}-test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
CONDA_ENV: [unpinned, upstream]
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
auto-activate-base: false
activate-environment: test_env
environment-file: ci/environment-${{ matrix.CONDA_ENV }}.yml

- name: Development Install intake-xarray
shell: bash -l {0}
run: |
python -m pip install --no-deps -e .
conda list

- name: Run Tests
shell: bash -l {0}
run: |
pytest --verbose --ignore=intake_xarray/tests/test_network.py

- name: Run Tests Requiring Network Connection
shell: bash -l {0}
run: |
pytest --verbose intake_xarray/tests/test_network.py
35 changes: 0 additions & 35 deletions appveyor.yml

This file was deleted.

7 changes: 0 additions & 7 deletions ci/appveyor/build.ps1

This file was deleted.

5 changes: 0 additions & 5 deletions ci/appveyor/install.ps1

This file was deleted.

9 changes: 0 additions & 9 deletions ci/appveyor/test.ps1

This file was deleted.

22 changes: 22 additions & 0 deletions ci/environment-unpinned.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: test_env
channels:
- conda-forge
dependencies:
- python
- aiohttp
- boto3
- flask
- h5netcdf
- intake
- netcdf4
- pip
- pydap
- pytest
- rasterio
- s3fs
- scikit-image
- xarray
- zarr
- pip:
- rangehttpserver
- moto[s3]
5 changes: 0 additions & 5 deletions ci/travis/install.sh

This file was deleted.

17 changes: 0 additions & 17 deletions ci/travis/test.sh

This file was deleted.