Skip to content

Commit

Permalink
Merge pull request #1444 from StochSS/develop
Browse files Browse the repository at this point in the history
2.5.1 Release
  • Loading branch information
briandrawert authored Mar 9, 2023
2 parents 263e3f6 + 26a136c commit f5224a4
Show file tree
Hide file tree
Showing 20 changed files with 751 additions and 547 deletions.
17 changes: 0 additions & 17 deletions .github/workflows/main.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .github/workflows/run-integration-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Run StochSS Integration Tests

on:
push:
branches: [main, develop]

jobs:
run-tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-20.04 ]

steps:
- name: Initialize environment
id: checkout
uses: actions/checkout@v2

- name: Run Integration Tests
id: run_integration_tests
uses: ./
with:
testin: '/stochss/stochss/tests/run_integration_tests.py'
21 changes: 21 additions & 0 deletions .github/workflows/run-unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Run StochSS Unit Tests

on: [push]

jobs:
run-tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-20.04 ]

steps:
- name: Initialize environment
id: checkout
uses: actions/checkout@v2

- name: Run Unit Tests
id: run_unit_tests
uses: ./
with:
testin: '/stochss/stochss/tests/run_unit_tests.py'
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ test: create_working_dir
-v $(DOCKER_WORKING_DIR):/home/jovyan/ \
-p 8888:8888 \
$(DOCKER_STOCHSS_IMAGE):latest \
/stochss/stochss/tests/run_tests.py
/stochss/stochss/tests/run_all_tests.py

build_and_test: build test

Expand Down
2 changes: 1 addition & 1 deletion __version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# @website https://github.com/stochss/stochss
# =============================================================================

__version__ = '2.5.0'
__version__ = '2.5.1'
__title__ = 'StochSS'
__description__ = 'StochSS is an integrated development environment (IDE) \
for simulation of biochemical networks.'
Expand Down
6 changes: 3 additions & 3 deletions jupyterhub/Dockerfile.jupyterhub
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ EXPOSE 8000

# Install dockerspawner, oauth, postgres
RUN python3 -m pip install --no-cache-dir \
jupyterhub \
jupyterhub==3.1.1 \
oauthenticator==0.11.* \
dockerspawner==0.11.* \
psycopg2-binary==2.9.* \
nbviewer==1.0.1 \
notebook \
gillespy2==1.7.2 \
spatialpy==1.1.2 \
gillespy2==1.8.1 \
spatialpy==1.2.1 \
plotly

# build the PUG pages
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ python-libsedml==2.0.9
python-libcombine==0.2.7
pyabc==0.12.6
escapism==1.0.1
gillespy2==1.8.0
gillespy2==1.8.1
spatialpy==1.2.1
stochss-compute[AWS]==1.0.1
git+https://github.com/StochSS/sciope.git@master
Empty file added stochss/tests/__init__.py
Empty file.
Loading

0 comments on commit f5224a4

Please sign in to comment.