We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d197029 commit 98a4a3fCopy full SHA for 98a4a3f
.github/workflows/tests.yml
@@ -1,12 +1,6 @@
1
name: netneurotools tests
2
3
-on:
4
- push:
5
- branches:
6
- - 'master'
7
- pull_request:
8
9
- - '*'
+on: [push, pull_request]
10
11
jobs:
12
check_skip:
tools/run_checks.sh
@@ -12,9 +12,9 @@ elif [ "$CHECK_TYPE" == "doc" ]; then
elif [ "$CHECK_TYPE" == "test" ]; then
13
mkdir for_testing
14
cd for_testing
15
- cp ../setupcfg .
16
- pytest --doctest-modules --cov=netneurotools--cov-report=xml \
17
- --junitxml=test-results.xml -v --pyargs=netneurotools
+ cp ../setup.cfg .
+ pytest --doctest-modules --cov netneurotools--cov-report xml \
+ --junitxml=test-results.xml -v --pyargs netneurotools
18
else
19
false
20
fi
0 commit comments