Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tests for change in repo structure #31

Merged
merged 3 commits into from
Apr 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ build: off

install:
- $HOME/venv$PY/bin/python -m pip install --upgrade pip wheel
- $HOME/venv$PY/bin/python -m pip install -r requirements.txt
- $HOME/venv$PY/bin/python -m pip install .

test_script:
- $HOME/venv$PY/bin/python tinuous --help
- $HOME/venv$PY/bin/tinuous --help
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
python -m pip install -r requirements.txt
python -m pip install .

- name: Basic smoketest
run: python tinuous --help
run: tinuous --help

- name: Install mypy
run: python -m pip install mypy

- name: Run mypy
run: mypy tinuous
run: mypy src

# vim:set et sts=2:
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ python:
- '3.8'
- '3.9'
install:
- pip install -r requirements.txt
- pip install .
script:
- python tinuous --help
- tinuous --help
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,4 @@ show_error_codes = True
show_traceback = True
pretty = True
plugins = pydantic.mypy
exclude = _version\.py