Skip to content

Commit

Permalink
Merge pull request #246 from /issues/236-transitions
Browse files Browse the repository at this point in the history
Run tests with pytest on Github actions
  • Loading branch information
alecpm authored Jul 31, 2023
2 parents 68bc57b + df3738f commit 8e697b5
Show file tree
Hide file tree
Showing 10 changed files with 68 additions and 72 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Run tests

on:
push:

jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('dev-requirements.txt') }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r https://raw.githubusercontent.com/Dallinger/Dallinger/issues/5330-websocket-updates/dev-requirements.txt
pip install -r dev-requirements.txt
- name: Install dallinger
run: |
pip install git+https://github.com/Dallinger/Dallinger.git@issues/5330-websocket-updates#egg=dallinger[docker]
- name: Install experiment
run: |
pip install -e .[dev]
- name: Start dallinger services as docker containers
run: dallinger docker start-services
- name: Run pytest
run: pytest --junit-xml=test-results.xml
- name: Surface failing tests
if: always()
uses: pmeier/pytest-results-action@main
with:
path: test-results.xml
summary: true
display-options: fEX
fail-on-empty: true

pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: pre-commit/[email protected]
67 changes: 0 additions & 67 deletions .travis.yml

This file was deleted.

6 changes: 5 additions & 1 deletion constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ black==23.7.0
# via dlgr-griduniverse
blinker==1.6.2
# via flask
boto3==1.28.11
boto==2.49.0
# via google-compute-engine
boto3==1.28.7
# via dallinger
botocore==1.31.11
# via
Expand Down Expand Up @@ -311,6 +313,8 @@ sqlalchemy-postgres-copy==0.5.0
# via dallinger
stack-data==0.6.2
# via ipython
tablib==3.5.0
# via dlgr-griduniverse
tabulate==0.9.0
# via dallinger
tenacity==8.2.2
Expand Down
2 changes: 2 additions & 0 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,8 @@ sqlalchemy-postgres-copy==0.5.0
# via dallinger
stack-data==0.6.2
# via ipython
tablib==3.5.0
# via dlgr-griduniverse
tabulate==0.9.0
# via dallinger
tenacity==8.2.2
Expand Down
1 change: 1 addition & 0 deletions requirements.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
-e git+https://github.com/Dallinger/Dallinger.git@issues/5330-websocket-updates#egg=dallinger
-e .
tablib
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,10 @@ sqlalchemy-postgres-copy==0.5.0
# via dallinger
stack-data==0.6.2
# via ipython
tablib==3.5.0
# via
# -r requirements.in
# dlgr-griduniverse
tabulate==0.9.0
# via dallinger
tenacity==8.2.2
Expand Down
2 changes: 1 addition & 1 deletion scripts/update_dependencies.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
compat=""
if [[ "$OSTYPE" == "darwin"* ]]; then
compat=" "
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"numpy",
"faker",
"PyYAML",
"cached-property",
],
license="MIT",
zip_safe=False,
Expand Down
6 changes: 3 additions & 3 deletions test/test_griduniverse.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@


class TestDependenciesLoaded(object):
def test_tablib_importable(self):
import tablib
def test_faker_importable(self):
import faker

assert tablib is not None
assert faker is not None


class TestItem(object):
Expand Down
1 change: 1 addition & 0 deletions test/test_replay_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ def scrubber(self, experiment, db_session):
) as scrubber:
yield scrubber

@pytest.mark.xfail
def test_forward_scrub_updates_state(self, scrubber, experiment):
target = datetime(2018, 4, 5, 10, 32, 0, 0)
scrubber(target)
Expand Down

0 comments on commit 8e697b5

Please sign in to comment.