Просмотр исходного кода

Re-enable emacs-git-snapshot on Travis, without test-with-flx

test-with-flx hangs infinitely only on emacs-git-snapshot on Travis.
Ryan C. Thompson 6 лет назад
Родитель
Сommit
58f2f0c886
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      .travis.yml

+ 3 - 3
.travis.yml

@@ -10,8 +10,7 @@ env:
     - EMACS_VERSION=emacs-25.2
     - EMACS_VERSION=emacs-25.3
     - EMACS_VERSION=emacs-26.1
-    # For some reason emac-git-snapshot hangs forever
-    # - EMACS_VERSION=emacs-git-snapshot
+    - EMACS_VERSION=emacs-git-snapshot
     - EMACS_VERSION=remacs-git-snapshot
 
 matrix:
@@ -43,4 +42,5 @@ script:
   - make compile
   # Don't send redundant coverage info
   - UNDERCOVER_CONFIG='((:send-report nil))' make test
-  - make test-with-flx
+  # For some reason emacs-git-snapshot hangs forever on this step
+  - if [ "$EMACS_VERSION" != emacs-git-snapshot ]; then make test-with-flx; fi