Skip to content

Commit 3b3fd68

Browse files
committed
python test comment out
1 parent bf363ff commit 3b3fd68

File tree

1 file changed

+63
-62
lines changed

1 file changed

+63
-62
lines changed

.circleci/config.yml

Lines changed: 63 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,69 @@
11
version: 2
22
jobs:
3-
python_test:
4-
docker:
5-
- image: cimg/python:3.11.2
6-
steps:
7-
- checkout
8-
- restore_cache:
9-
keys:
10-
- venv-{{ checksum "python/ci_requirements.txt"}}
11-
- tox-{{ checksum "python/tox.ini" }}
12-
13-
- run:
14-
name: install dependencies
15-
command: |
16-
cd python/
17-
python3 -m venv venv || true
18-
python3 -m pip install -U pip
19-
python3 -m pip install -r ci_requirements.txt
20-
21-
- save_cache:
22-
paths:
23-
- python/venv
24-
key: venv-{{ checksum "python/ci_requirements.txt"}}
25-
26-
- save_cache:
27-
paths:
28-
- python/.tox
29-
key: tox-{{ checksum "python/tox.ini" }}
30-
31-
- run:
32-
name: run python tests
33-
command: |
34-
cd python/
35-
venv/bin/tox -e py3112 -e black-check -e cov -e codecov
363

37-
python_deploy:
38-
docker:
39-
- image: cimg/python:3.11.2
40-
steps:
41-
- checkout
42-
- restore_cache:
43-
keys:
44-
- venv-{{ checksum "python/ci_requirements.txt"}}
45-
46-
- run:
47-
name: install dependencies
48-
command: |
49-
cd python/
50-
python3 -m venv venv || true
51-
python3 -m pip install -U pip
52-
python3 -m pip install -r ci_requirements.txt
53-
54-
- save_cache:
55-
paths:
56-
- python/venv
57-
key: venv-{{ checksum "python/ci_requirements.txt"}}
58-
59-
- run:
60-
name: build and push
61-
command: |
62-
cd python/
63-
source venv/bin/activate
64-
python ./setup.py sdist bdist_wheel
65-
venv/bin/twine upload dist/* --non-interactive --skip-existing
4+
# python_test:
5+
# docker:
6+
# - image: cimg/python:3.11.2
7+
# steps:
8+
# - checkout
9+
# - restore_cache:
10+
# keys:
11+
# - venv-{{ checksum "python/ci_requirements.txt"}}
12+
# - tox-{{ checksum "python/tox.ini" }}
13+
#
14+
# - run:
15+
# name: install dependencies
16+
# command: |
17+
# cd python/
18+
# python3 -m venv venv || true
19+
# python3 -m pip install -U pip
20+
# python3 -m pip install -r ci_requirements.txt
21+
#
22+
# - save_cache:
23+
# paths:
24+
# - python/venv
25+
# key: venv-{{ checksum "python/ci_requirements.txt"}}
26+
#
27+
# - save_cache:
28+
# paths:
29+
# - python/.tox
30+
# key: tox-{{ checksum "python/tox.ini" }}
31+
#
32+
# - run:
33+
# name: run python tests
34+
# command: |
35+
# cd python/
36+
# venv/bin/tox -e py3112 -e black-check -e cov -e codecov
37+
#
38+
# python_deploy:
39+
# docker:
40+
# - image: cimg/python:3.11.2
41+
# steps:
42+
# - checkout
43+
# - restore_cache:
44+
# keys:
45+
# - venv-{{ checksum "python/ci_requirements.txt"}}
46+
#
47+
# - run:
48+
# name: install dependencies
49+
# command: |
50+
# cd python/
51+
# python3 -m venv venv || true
52+
# python3 -m pip install -U pip
53+
# python3 -m pip install -r ci_requirements.txt
54+
#
55+
# - save_cache:
56+
# paths:
57+
# - python/venv
58+
# key: venv-{{ checksum "python/ci_requirements.txt"}}
59+
#
60+
# - run:
61+
# name: build and push
62+
# command: |
63+
# cd python/
64+
# source venv/bin/activate
65+
# python ./setup.py sdist bdist_wheel
66+
# venv/bin/twine upload dist/* --non-interactive --skip-existing
6667

6768
node_test:
6869
docker:

0 commit comments

Comments
 (0)