Skip to content
This repository has been archived by the owner on Nov 13, 2023. It is now read-only.

Commit

Permalink
Merge 7ad6624 into b10a48f
Browse files Browse the repository at this point in the history
  • Loading branch information
Patarimi committed Sep 11, 2022
2 parents b10a48f + 7ad6624 commit be9b1d4
Show file tree
Hide file tree
Showing 4 changed files with 93 additions and 11 deletions.
19 changes: 9 additions & 10 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
# appveyor.yml
---
image:
- Visual Studio 2019

environment:
global:
PYTHON: "C:\\Python38-x64"
PYTHON_VERSION: "3.8.x"
PYTHON_ARCH: "64"
matrix:
- TOXENV: py39
- TOXENV: py310

build: false

install:
- set PATH=%PYTHON%\\scripts;%PATH%
- "%PYTHON%\\python.exe -m pip install --upgrade pip"
- pip install -qr requirements.txt
- pip install -q pytest-cov
# install tox
- py -m pip install tox

test_script:
- cd C:\projects\passiveautodesign
- "%PYTHON%\\python.exe -m pytest --cov-report term-missing:skip-covered --cov=passive_auto_design"
- py -m tox
77 changes: 76 additions & 1 deletion poetry.lock

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

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ mkdocs-gen-files = "^0.3.4"
mkdocs-section-index = "^0.3.4"
mkdocs-literate-nav = "^0.4.1"
mkdocstrings-python = "^0.7.1"
tox = "^3.26.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down
7 changes: 7 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[tox]
envlist = py3{9,10}

[testenv]
description = Unit tests
deps = pytest
commands = pytest

0 comments on commit be9b1d4

Please sign in to comment.