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

Issue #344 fix tests #349

Closed
wants to merge 23 commits into from
Closed
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
110 changes: 0 additions & 110 deletions .circleci/config.yml

This file was deleted.

64 changes: 46 additions & 18 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,56 +4,84 @@ on:
push:
branches:
- master
- '**Tests**'
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
- '**.md'

jobs:
test-setup-python:
name: Test setup-python
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run with setup-python 3.7
uses: ./
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: '3.7'
- name: Setup pylint
run: python -m pip install pylint
- name: Setup flake8
run: python -m pip install flake8
- name: Run tests
run: make test
run: make test
- name: Run e2e Tests
run: make e2e_test
env:
RUN_E2E_TESTS: true

- name: Run with setup-python 3.8
uses: ./
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: '3.8'
- name: Setup pylint
run: python -m pip install pylint
- name: Setup flake8
run: python -m pip install flake8
- name: Run tests
run: make test
run: make test
- name: Run e2e Tests
run: make e2e_test

- name: Run with setup-python 3.9
uses: ./
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: '3.9'
- name: Setup pylint
run: python -m pip install pylint
- name: Setup flake8
run: python -m pip install flake8
- name: Run tests
run: make test
run: make test
- name: Run e2e Tests
run: make e2e_test

- name: Run with setup-python 3.10
uses: ./
uses: actions/setup-python@v4
with:
python-version: 3.10
python-version: '3.10'
- name: Setup pylint
run: python -m pip install pylint
- name: Setup flake8
run: python -m pip install flake8
- name: Run tests
run: make test
run: make test
- name: Run e2e Tests
run: make e2e_test

- name: Run with setup-python 3.11
uses: ./
uses: actions/setup-python@v4
with:
python-version: 3.11
python-version: '3.11'
- name: Setup pylint
run: python -m pip install pylint
- name: Setup flake8
run: python -m pip install flake8
- name: Run tests
run: make test
run: make e2e_test
run: make test
- name: Run e2e Tests
run: make e2e_test
Loading
Loading