Delete .circleci directory

This commit is contained in:
Jon Janzen 2024-03-15 06:20:37 -07:00 committed by GitHub
parent 263a3fcafc
commit 7e160fe43f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,28 +0,0 @@
version: 2.1
jobs:
python_lint:
docker:
- image: circleci/python:3.7
steps:
- checkout
- run:
command: |
pip install --user --progress-bar off flake8 typing
flake8 .
test:
docker:
- image: circleci/python:3.7
steps:
- checkout
- run:
command: |
pip install --user --progress-bar off pytest
pip install --user --progress-bar off torch torchvision
pip install --user --progress-bar off timm==0.3.2
pytest .
workflows:
build:
jobs:
- python_lint