Skip to content

removes telemetry

removes telemetry #528

Workflow file for this run

name: CI macOS
on:
pull_request:
push:
branches:
- master
- 'dev/**'
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
python-version: [3.7, 3.8, 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