Skip to content

Commit

Permalink
Merge pull request #145 from kushaldas/tests_on_windows
Browse files Browse the repository at this point in the history
Fixes #144 runs tests on windows
  • Loading branch information
kushaldas authored Nov 16, 2023
2 parents c9a17c2 + 587eb73 commit 5751a4c
Show file tree
Hide file tree
Showing 7 changed files with 110 additions and 201 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/windows_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Tests on Windows
on: [push, pull_request, workflow_dispatch]

jobs:
build:
name: Build and run tests on Windows
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.10","3.11","3.12"]
platform: [{ os: "windows-latest", python-architecture: "x64", rust-target: "x86_64-pc-windows-msvc" }]
steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.platform.python-architecture }}

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.platform.rust-target }}

- name: Install build dependencies
shell: bash
env:
PYTHON: ${{ matrix.python-version }}
run: |
python -m pip install -U pip setuptools
python -m pip install -r requirements-dev.txt
- name: Build wheel
shell: bash
env:
PYTHON: ${{ matrix.python-version }}
run: python setup.py develop

- name: Run tests
env:
PYTHON: ${{ matrix.python-version }}
run: python -m pytest -vvv



216 changes: 28 additions & 188 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ tempfile = "3.0.0"
talktosc = "0.2"
sshkeys = "0.3.2"
regex = "1"
time = "0.2"
time = "0.3"

[target.'cfg(not(target_os = "windows"))'.dependencies]
sequoia-openpgp = { default-features = false, features = ["crypto-nettle", "compression"] }
Expand Down
Loading

0 comments on commit 5751a4c

Please sign in to comment.