-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
maybe this fixes windows?
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,8 +51,8 @@ jobs: | |
conda install -y conda-build conda-verify | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "geisserml" | ||
python3 -VV | ||
python3 -m pip install -U -r req/setup.txt | ||
python -VV | ||
python -m pip install -U -r req/setup.txt | ||
- name: Build package | ||
run: ./run craft conda_${{ inputs.package }} | ||
|
@@ -103,16 +103,16 @@ jobs: | |
ls -l conda/transfer/ | ||
conda install bblanchon::pdfium-binaries | ||
conda install conda/transfer/*.tar.bz2 | ||
python3 -VV | ||
python -VV | ||
- name: Test raw package | ||
if: inputs.package == 'raw' | ||
run: python3 conda/raw/minitest.py | ||
run: python conda/raw/minitest.py | ||
|
||
- name: Test helpers package | ||
if: inputs.package == 'helpers' | ||
run: | | ||
python3 -m pip install -U -r req/default.txt | ||
python -m pip install -U -r req/default.txt | ||
./run test | ||
# publish: | ||
|