WwYc commited on
Commit
8e82cf3
·
verified ·
1 Parent(s): 94a1c92

Delete DETR/.circleci

Browse files
Files changed (1) hide show
  1. DETR/.circleci/config.yml +0 -30
DETR/.circleci/config.yml DELETED
@@ -1,30 +0,0 @@
1
- version: 2.1
2
-
3
- jobs:
4
- python_lint:
5
- docker:
6
- - image: circleci/python:3.7
7
- steps:
8
- - checkout
9
- - run:
10
- command: |
11
- pip install --user --progress-bar off flake8 typing
12
- flake8 .
13
-
14
- test:
15
- docker:
16
- - image: circleci/python:3.7
17
- steps:
18
- - checkout
19
- - run:
20
- command: |
21
- pip install --user --progress-bar off scipy pytest
22
- pip install --user --progress-bar off --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
23
- pip install --user --progress-bar off onnx onnxruntime
24
- pytest .
25
-
26
- workflows:
27
- build:
28
- jobs:
29
- - python_lint
30
- - test