From 100014651cb69edf041a972b34881083da13fe60 Mon Sep 17 00:00:00 2001 From: nicoco Date: Wed, 22 Jan 2025 22:23:45 +0100 Subject: [PATCH] cq: remove unused files --- .gitlab-ci.yml | 81 -------------------------------------------------- .travis.yml | 7 ----- tox.ini | 5 ---- 3 files changed, 93 deletions(-) delete mode 100644 .gitlab-ci.yml delete mode 100644 .travis.yml delete mode 100644 tox.ini diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 6b039321..00000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,81 +0,0 @@ -stages: - - lint - - test - - trigger - -mypy: - stage: lint - tags: - - docker - image: python:3 - script: - - pip3 install mypy - - mypy slixmpp - -test-3.7: - stage: test - tags: - - docker - image: python:3.7 - script: - - apt-get update - - apt-get install -y python3 python3-pip cython3 gpg - - pip3 install emoji aiohttp cryptography - - ./run_tests.py - -test-3.10: - stage: test - tags: - - docker - image: python:3.10 - script: - - apt update - - apt-get install -y python3 python3-pip cython3 gpg - - pip3 install emoji aiohttp cryptography - - ./run_tests.py - -test-3.11: - stage: test - tags: - - docker - image: python:3.11 - script: - - apt-get update - - apt-get install -y python3 python3-pip cython3 gpg - - pip3 install emoji aiohttp cryptography - - ./run_tests.py - -test-3.12: - stage: test - tags: - - docker - image: python:3.12-rc - allow_failure: true - script: - - apt-get update - - apt-get install -y python3 python3-pip cython3 gpg - - pip3 install emoji aiohttp cryptography - - ./run_tests.py - -test_integration: - stage: test - tags: - - docker - image: python:3 - only: - variables: - - $CI_ACCOUNT1 - - $CI_ACCOUNT2 - script: - - apt-get update - - apt-get install -y python3 python3-pip cython3 gpg - - pip3 install emoji aiohttp aiodns - - ./run_integration_tests.py - -trigger_poezio: - stage: trigger - tags: - - docker - image: curlimages/curl:7.79.1 - script: - - curl --request POST -F token="$SLIXMPP_TRIGGER_TOKEN" -F ref=master https://lab.louiz.org/api/v4/projects/18/trigger/pipeline diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index be8e089c..00000000 --- a/.travis.yml +++ /dev/null @@ -1,7 +0,0 @@ -language: python -python: - - "3.7" - - "3.8-dev" -install: - - "pip install ." -script: testall.py diff --git a/tox.ini b/tox.ini deleted file mode 100644 index 8e55625b..00000000 --- a/tox.ini +++ /dev/null @@ -1,5 +0,0 @@ -[tox] -envlist = py34 -[testenv] -deps = nose -commands = nosetests --where=tests --exclude=live -i slixtest.py