You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by se...@apache.org on 2022/01/26 23:45:19 UTC

[incubator-ponymail-foal] branch master updated: Rename to avoid clash with unit tests

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-foal.git


The following commit(s) were added to refs/heads/master by this push:
     new c28ebdf  Rename to avoid clash with unit tests
c28ebdf is described below

commit c28ebdf852aa3bda98c8fed6b30310835c8d243f
Author: Sebb <se...@apache.org>
AuthorDate: Wed Jan 26 23:45:10 2022 +0000

    Rename to avoid clash with unit tests
---
 .github/workflows/integration-tests.yml            | 2 +-
 test/{test_integration.py => itest_integration.py} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml
index 6d21907..2ece7ee 100644
--- a/.github/workflows/integration-tests.yml
+++ b/.github/workflows/integration-tests.yml
@@ -93,7 +93,7 @@ jobs:
         curl -sq 'http://localhost:8080/api/stats.lua?list=*&domain=ponymail.apache.org&d=gte=0d&emailsOnly'
     - name: Test against database emails
       run: |
-        python -m pytest -s test/test_integration.py
+        python -m pytest -s test/itest_integration.py
     - name: Shutdown
       if: always()
       run: |
diff --git a/test/test_integration.py b/test/itest_integration.py
similarity index 98%
rename from test/test_integration.py
rename to test/itest_integration.py
index 6637300..9c5ef2e 100644
--- a/test/test_integration.py
+++ b/test/itest_integration.py
@@ -19,7 +19,7 @@ import pytest
 import random
 import requests
 
-# Run as: python3 -m pytest [-s] test/test_integration.py
+# Run as: python3 -m pytest [-s] test/itest_integration.py
 
 API_BASE='http://localhost:8080/api'