Skip to content

Commit

Permalink
build: pipeline work
Browse files Browse the repository at this point in the history
  • Loading branch information
phil65 committed May 2, 2023
1 parent 59048e2 commit ef3993c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/builld.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-10.15, windows-latest]
platform: [windows-latest]
python-version: ["3.10", "3.11"]
runs-on: ${{ matrix.platform }}
steps:
Expand All @@ -22,9 +22,9 @@ jobs:
pip install --upgrade pip
pip install poetry --pre
poetry install
- name: Test with pytest
run: |
poetry run pytest --doctest-modules --junitxml=junit/test-results.xml --cov=ibadatfile --cov-report=xml --cov-report=html
# - name: Test with pytest
# run: |
# poetry run pytest --doctest-modules --junitxml=junit/test-results.xml --cov=ibadatfile --cov-report=xml --cov-report=html
- name: Create documentation
if: matrix.python-version == '3.10' && runner.os == 'Linux'
run: |
Expand All @@ -42,7 +42,7 @@ jobs:
publish_dir: ./site

deploy:
runs-on: ubuntu-latest
runs-on: windows-latest
if: startsWith(github.ref, 'refs/tags/v')
needs: build
steps:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ packages = [

[tool.poetry.dependencies]
python = ">=3.10"
pywin32 = "*"
pywin32 = { version = "*", markers = "platform_system == 'Windows'"}
pandas = "^1.5"

[tool.poetry.dev-dependencies]
Expand Down

0 comments on commit ef3993c

Please sign in to comment.