Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use mamba run
  • Loading branch information
adam-urbanczyk authored Dec 15, 2024
commit 16d6cb104513b12748f8416bee590c28a1452098
11 changes: 5 additions & 6 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,17 @@ init:
install:
- conda config --set always_yes yes
- mamba env create -f environment.yml
- mamba activate cadquery
- mamba list
- mamba list -n cadquery

build: false

test_script:
- black . --diff --check
- mypy cadquery
- pytest -v --cov
- mamba run -n cadquery black . --diff --check
- mamba run -n cadquery mypy cadquery
- mamba run -n cadquery pytest -v --cov

on_success:
- codecov
- mamba run -n cadquery codecov

#on_finish:
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
Expand Down