Skip to content

Commit dbdb741

Browse files
author
Diego Ardila
committed
temporarily disable pip install to test
1 parent 0b98e1a commit dbdb741

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

.circleci/config.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,24 @@ jobs:
1717
apt-get -y install curl
1818
pip install --upgrade pip
1919
pip install poetry
20-
poetry install
20+
# poetry install
2121

22-
- run:
23-
name: Black Formatting Check # Only validation, without re-formatting
24-
command: |
25-
poetry run black --check -t py36 .
26-
- run:
27-
name: Flake8 Lint Check # Uses setup.cfg for configuration
28-
command: |
29-
poetry run flake8 . --count --statistics
30-
- run:
31-
name: Pylint Lint Check # Uses .pylintrc for configuration
32-
command: |
33-
poetry run pylint nucleus
34-
- run :
35-
name: MyPy typing check
36-
command: |
37-
poetry run mypy --ignore-missing-imports nucleus
22+
# - run:
23+
# name: Black Formatting Check # Only validation, without re-formatting
24+
# command: |
25+
# poetry run black --check -t py36 .
26+
# - run:
27+
# name: Flake8 Lint Check # Uses setup.cfg for configuration
28+
# command: |
29+
# poetry run flake8 . --count --statistics
30+
# - run:
31+
# name: Pylint Lint Check # Uses .pylintrc for configuration
32+
# command: |
33+
# poetry run pylint nucleus
34+
# - run :
35+
# name: MyPy typing check
36+
# command: |
37+
# poetry run mypy --ignore-missing-imports nucleus
3838
# - run:
3939
# name: Pytest Test Cases
4040
# command: | # Run test suite, uses NUCLEUS_TEST_API_KEY env variable

0 commit comments

Comments
 (0)