Skip to content

Commit

Permalink
Add windows, remove travis
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbrittain committed Sep 16, 2023
1 parent d481f2b commit 53f1cf9
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 63 deletions.
26 changes: 24 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,34 @@ on:

jobs:
test:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10.11, 3.11.3, pypy3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/dev.txt
- name: Test
run: |
coverage run --source=asciimatics -m unittest
- name: Upload to coveralls
uses: AndreMiras/coveralls-python-action@develop
with:
parallel: true
flag-name: Unit Test

testwindows:
runs-on: windows-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -32,7 +54,7 @@ jobs:
flag-name: Unit Test

coveralls_finish:
needs: test
needs: [ test, testwindows ]
runs-on: ubuntu-latest
steps:
- name: Coveralls finished
Expand Down
57 changes: 0 additions & 57 deletions .travis.yml

This file was deleted.

2 changes: 0 additions & 2 deletions noserun.bat

This file was deleted.

2 changes: 0 additions & 2 deletions noserun.sh

This file was deleted.

0 comments on commit 53f1cf9

Please sign in to comment.