delete telemetry #523
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Windows | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- 'dev/**' | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
python-version: [3.9] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Lint with flake8 | |
run: | | |
python -m pip install --upgrade pip | |
pip install flake8 | |
flake8 | |
- name: Install dependencies | |
run: | | |
pip install invoke | |
pip install -e tests/assets/my_project | |
pip install ".[dev]" | |
# one of airflow's dependencies is downgrading clic, which breaks ploomber | |
pip install click --upgrade | |
- name: Test with pytest | |
env: | |
PLOOMBER_STATS_ENABLED: false | |
run: | | |
invoke test --no-pty |