Skip to content

Commit 13880b7

Browse files
added verbosity to build on github CI
1 parent 77aafde commit 13880b7

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

.github/workflows/conda_test.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -51,28 +51,28 @@ jobs:
5151
shell: bash -l {0}
5252
run: |
5353
cd ./py_gnome
54-
python -m pip install ./
54+
python -m pip install -vvv ./
5555
- name: Run pytest
5656
shell: bash -l {0}
5757
run: |
5858
cd ./py_gnome/tests/unit_tests
5959
pytest --runslow
60-
- name: Build wheel file
61-
shell: bash -l {0}
62-
run: |
63-
cd ./py_gnome
64-
python -m pip wheel ./
65-
- name: Copy files to artifact folder
66-
shell: bash -l {0}
67-
run: |
68-
mkdir installable_wheel_${{ matrix.os }}_Py${{ matrix.pyver }}
69-
cp ./py_gnome/*.whl installable_wheel_${{ matrix.os }}_Py${{ matrix.pyver }}
70-
cp ./py_gnome/conda_requirements.txt installable_wheel_${{ matrix.os }}_Py${{ matrix.pyver }}
71-
- name: Upload Artifact
72-
uses: actions/upload-artifact@v4
73-
with:
74-
name: installable-wheel-${{ matrix.os }}-Py${{ matrix.pyver }}
75-
path: installable_wheel_${{ matrix.os }}_Py${{ matrix.pyver }}
60+
# - name: Build wheel file
61+
# shell: bash -l {0}
62+
# run: |
63+
# cd ./py_gnome
64+
# python -m pip wheel ./
65+
# - name: Copy files to artifact folder
66+
# shell: bash -l {0}
67+
# run: |
68+
# mkdir installable_wheel_${{ matrix.os }}_Py${{ matrix.pyver }}
69+
# cp ./py_gnome/*.whl installable_wheel_${{ matrix.os }}_Py${{ matrix.pyver }}
70+
# cp ./py_gnome/conda_requirements.txt installable_wheel_${{ matrix.os }}_Py${{ matrix.pyver }}
71+
# - name: Upload Artifact
72+
# uses: actions/upload-artifact@v4
73+
# with:
74+
# name: installable-wheel-${{ matrix.os }}-Py${{ matrix.pyver }}
75+
# path: installable_wheel_${{ matrix.os }}_Py${{ matrix.pyver }}
7676

7777
lint:
7878
name: Flake8 linting

0 commit comments

Comments
 (0)