Skip to content

Commit 21a10fe

Browse files
committed
Setting up automated tests
1 parent b871e94 commit 21a10fe

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/python-app.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: NEAT unit tests
55

66
on:
77
push:
8-
branches: [ master ]
8+
branches: [ "main", "develop" ]
99
pull_request:
10-
branches: [ master ]
10+
branches: [ "main" ]
1111

1212
jobs:
1313
build:
@@ -26,6 +26,11 @@ jobs:
2626
conda activate test_neat
2727
poetry install
2828
neat
29+
30+
- name: run coverage tests
31+
run: |
32+
conda activate test_neat
33+
python tests/coverage_tests.py
2934
3035
# - name: lint with flake8
3136
# run: |
@@ -46,7 +51,3 @@ jobs:
4651
# cd ${{ github.workspace }}
4752
# neat --log-level ERROR --no-log model-seq-err -i data/baby.fastq
4853
# - run: echo "This job's status is ${{ job.status }}."
49-
50-
51-
52-

0 commit comments

Comments
 (0)