You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by hu...@apache.org on 2021/09/20 20:03:56 UTC

[incubator-ponymail-foal] branch master updated: Delete .travis.yml

This is an automated email from the ASF dual-hosted git repository.

humbedooh 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 672c7d8  Delete .travis.yml
672c7d8 is described below

commit 672c7d81b9c6f3aba760dbff284b0a559e96cbc3
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Mon Sep 20 15:03:49 2021 -0500

    Delete .travis.yml
    
    Travis seems unreliable as a CI, so I am removing this check.
    Replaced with GitHub Actions type testing
---
 .travis.yml | 44 --------------------------------------------
 1 file changed, 44 deletions(-)

diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 8049352..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,44 +0,0 @@
----
-language: python
-os:
-  - linux
-dist: focal
-
-python:
-  - "3.8"
-  - "3.9-dev"
-  - "nightly"
-
-notifications:
-  irc:
-    if: fork = false
-    channels:
-      - "irc.libera.chat#ponymail"
-  email:
-    if: fork = false
-    recipients:
-      - dev@ponymail.apache.org
-
-before_script:
-  - pip install mypy
-
-script:
-  # Is this needed? There are no server tests currently
-  - pip install -r server/requirements.txt
-  - pip install -r tools/requirements.txt
-  - mypy --cache-dir /tmp/ --install-types
-  - mypy --cache-dir /tmp/ --ignore-missing-imports tools/archiver.py
-  - mypy --cache-dir /tmp/ --ignore-missing-imports tools/import-mbox.py
-  - mypy --cache-dir /tmp/ --ignore-missing-imports server/main.py
-  - mypy --cache-dir /tmp/ --ignore-missing-imports server/plugins/*.py
-  - mypy --cache-dir /tmp/ --ignore-missing-imports server/endpoints/*.py
-
-jobs:
-  include:
-    - stage: "Tests"
-      name: "Unit Tests"
-      before_script:
-        - git clone https://github.com/apache/incubator-ponymail-unit-tests.git tests
-        - pip install html2text
-        - sed -e 's/# cropout:/cropout:/' tools/archiver.yaml.example >tools/archiver.yaml
-      script: cd tests && python3 runall.py --rootdir ../