Skip to content

Commit aba3947

Browse files
committed
comment out tests
1 parent 956b0ed commit aba3947

1 file changed

Lines changed: 36 additions & 36 deletions

File tree

.github/workflows/tests.yaml

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -18,39 +18,39 @@ jobs:
1818
uses: actions/setup-python@v4
1919
with:
2020
python-version: ${{ matrix.python-version }}
21-
#----------------------------------------------
22-
# ----- install & configure poetry -----
23-
#----------------------------------------------
24-
- name: Install Poetry
25-
uses: snok/install-poetry@v1
26-
with:
27-
virtualenvs-create: true
28-
virtualenvs-in-project: true
29-
installer-parallel: true
30-
#----------------------------------------------
31-
# load cached venv if cache exists
32-
#----------------------------------------------
33-
- name: Load cached venv
34-
id: cached-poetry-dependencies
35-
uses: actions/cache@v3
36-
with:
37-
path: .venv
38-
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
39-
#----------------------------------------------
40-
# install dependencies if cache does not exist
41-
#----------------------------------------------
42-
- name: Install dependencies
43-
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
44-
continue-on-error: true
45-
run: poetry install --no-interaction --no-root
46-
#----------------------------------------------
47-
# install your root project, if required
48-
#----------------------------------------------
49-
- name: Install library
50-
run: poetry install --no-interaction
51-
#----------------------------------------------
52-
# type check, and test your code
53-
#----------------------------------------------
54-
- name: MyPy
55-
run: |
56-
poetry run mypy synth
21+
# #----------------------------------------------
22+
# # ----- install & configure poetry -----
23+
# #----------------------------------------------
24+
# - name: Install Poetry
25+
# uses: snok/install-poetry@v1
26+
# with:
27+
# virtualenvs-create: true
28+
# virtualenvs-in-project: true
29+
# installer-parallel: true
30+
# #----------------------------------------------
31+
# # load cached venv if cache exists
32+
# #----------------------------------------------
33+
# - name: Load cached venv
34+
# id: cached-poetry-dependencies
35+
# uses: actions/cache@v3
36+
# with:
37+
# path: .venv
38+
# key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
39+
# #----------------------------------------------
40+
# # install dependencies if cache does not exist
41+
# #----------------------------------------------
42+
# - name: Install dependencies
43+
# if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
44+
# continue-on-error: true
45+
# run: poetry install --no-interaction --no-root
46+
# #----------------------------------------------
47+
# # install your root project, if required
48+
# #----------------------------------------------
49+
# - name: Install library
50+
# run: poetry install --no-interaction
51+
# #----------------------------------------------
52+
# # type check, and test your code
53+
# #----------------------------------------------
54+
# - name: MyPy
55+
# run: |
56+
# poetry run mypy synth

0 commit comments

Comments
 (0)