This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-ponymail-unit-tests.git
The following commit(s) were added to refs/heads/master by this push:
new 8631ada Fix warning; re-order tests
8631ada is described below
commit 8631ada326e908225bee459a5405915635b3a6d2
Author: Sebb <[email protected]>
AuthorDate: Tue Jun 1 20:53:53 2021 +0100
Fix warning; re-order tests
---
.github/workflows/unittest.yml | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml
index 76d4e35..6fe2524 100644
--- a/.github/workflows/unittest.yml
+++ b/.github/workflows/unittest.yml
@@ -35,18 +35,11 @@ jobs:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
- version: ${{ matrix.python-version }}
+ python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- - name: Ponymail 0.10 init
- run: |
- cd ponymail-0.10
- sed -e 's/#cropout:.*/cropout:
(\\w+\\.\\w+)\\.incubator\\.apache\\.org \\1.apache.org/'
tools/ponymail.cfg.sample >tools/ponymail.cfg
- - name: Ponymail 0.10 Test main
- run: |
- PYTHONHASHSEED=0 python runall.py --root ponymail-0.10
- name: Ponymail 0.11 Init
run: |
cd ponymail-0.11
@@ -68,3 +61,10 @@ jobs:
- name: Foal Test main
run: |
python runall.py --root ponymail-foal
+ - name: Ponymail 0.10 init
+ run: |
+ cd ponymail-0.10
+ sed -e 's/#cropout:.*/cropout:
(\\w+\\.\\w+)\\.incubator\\.apache\\.org \\1.apache.org/'
tools/ponymail.cfg.sample >tools/ponymail.cfg
+ - name: Ponymail 0.10 Test main
+ run: |
+ PYTHONHASHSEED=0 python runall.py --root ponymail-0.10