Skip to content
Snippets Groups Projects
Unverified Commit 7e160fe4 authored by Jon Janzen's avatar Jon Janzen Committed by GitHub
Browse files

Delete .circleci directory

parent 263a3fca
No related branches found
No related tags found
No related merge requests found
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment