Skip to content
Draft
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
29 changes: 29 additions & 0 deletions .github/workflows/run_pytest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Run Pytest

on:
pull_request:
branches: [master]
types: [synchronize, opened, reopened, ready_for_review]

# run checks on any change of master, including merge of PRs
push:
branches: [master]

jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 1

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Install package and dependencies
run: |
pip install .[test,gui]
- name: Test with pytest
run: |
pytest --cov=src/odmltables src/odmltables/
37 changes: 0 additions & 37 deletions .travis.yml

This file was deleted.

90 changes: 0 additions & 90 deletions continuous_integration/install.sh

This file was deleted.

18 changes: 0 additions & 18 deletions continuous_integration/test_script.sh

This file was deleted.