emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/eglot b0a6a783cf 1/4: Remove travis CI configuration


From: ELPA Syncer
Subject: [elpa] externals/eglot b0a6a783cf 1/4: Remove travis CI configuration
Date: Sat, 15 Jan 2022 06:57:25 -0500 (EST)

branch: externals/eglot
commit b0a6a783cf00adce2a0eea4be1028dc51abb820a
Author: Stefan Kangas <stefan@marxist.se>
Commit: Stefan Kangas <stefan@marxist.se>

    Remove travis CI configuration
    
    * .travis.yml: Delete file.
    * README.md: Remove travis badge.
    * eglot-tests.el (rls-watches-files, rls-hover-after-edit)
    (eglot-multiline-eldoc): Remove travis specific code.
---
 .travis.yml    | 36 ------------------------------------
 README.md      |  1 -
 eglot-tests.el |  3 ---
 3 files changed, 40 deletions(-)

diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 24ede3005b..0000000000
--- a/.travis.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-language: rust
-sudo: false
-rust:
-  - stable
-
-env:
-  global:
-    - TRAVIS_TESTING=t
-  matrix:
-    - EMACS_VERSION=master
-
-install:
-  - curl -fSLO 
https://github.com/npostavs/emacs-travis/releases/download/bins/emacs-bin-${EMACS_VERSION}.tar.gz
-  - tar -xaf emacs-bin-${EMACS_VERSION}.tar.gz -C /
-  # Configure $PATH: Emacs installed to /tmp/emacs
-  - export PATH=/tmp/emacs/bin:${PATH}
-  - emacs --version
-  # Install RLS
-  - rustup update
-  - rustup component add rls-preview rust-analysis rust-src
-  # Install https://github.com/palantir/python-language-server
-  - virtualenv .
-  - . ./bin/activate
-  - pip install 'python-language-server[all]==0.31.10'
-  # Install eclipse.jdt.ls
-  - curl -fSL 
https://download.eclipse.org/jdtls/snapshots/jdt-language-server-latest.tar.gz 
-o eclipse.tar.gz
-  - mkdir eclipse.jdt.ls
-  - tar -C eclipse.jdt.ls -xzf eclipse.tar.gz
-  - export CLASSPATH=$(pwd)/$(find eclipse.jdt.ls/ -regex 
eclipse.jdt.ls/plugins/org.eclipse.equinox.launcher_.*.jar):${CLASSPATH}
-
-before_script:
-  - make eglot.elc ERROR_ON_WARN=t
-
-script:
-  - make check
-
diff --git a/README.md b/README.md
index ab9f24d697..fcc8eb60b4 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,3 @@
-[![Build 
Status](https://travis-ci.org/joaotavora/eglot.png?branch=master)](https://travis-ci.org/joaotavora/eglot)
 [![GNU 
ELPA](https://elpa.gnu.org/packages/eglot.svg)](https://elpa.gnu.org/packages/eglot.html)
 
[![MELPA](https://melpa.org/packages/eglot-badge.svg)](https://melpa.org/#/eglot)
 
diff --git a/eglot-tests.el b/eglot-tests.el
index 96364c6147..0f51d18777 100644
--- a/eglot-tests.el
+++ b/eglot-tests.el
@@ -375,7 +375,6 @@ Pass TIMEOUT to `eglot--with-timeout'."
   "Start RLS server.  Notify it when a critical file changes."
   (skip-unless (executable-find "rls"))
   (skip-unless (executable-find "cargo"))
-  (skip-unless (null (getenv "TRAVIS_TESTING")))
   (let ((eglot-autoreconnect 1))
     (eglot--with-fixture
         '(("watch-project" . (("coiso.rs" . "bla")
@@ -472,7 +471,6 @@ Pass TIMEOUT to `eglot--with-timeout'."
   "Hover and highlightChanges are tricky in RLS."
   (skip-unless (executable-find "rls"))
   (skip-unless (executable-find "cargo"))
-  (skip-unless (null (getenv "TRAVIS_TESTING")))
   (eglot--with-fixture
       '(("hover-project" .
          (("main.rs" .
@@ -622,7 +620,6 @@ def foobazquuz(d, e, f): pass
 
 (ert-deftest eglot-multiline-eldoc ()
   "Test if suitable amount of lines of hover info are shown."
-  :expected-result (if (getenv "TRAVIS_TESTING") :failed :passed)
   (skip-unless (executable-find "pyls"))
   (eglot--with-fixture
       `(("project" . (("hover-first.py" . "from datetime import datetime"))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]