From 160345f3d593e2193a9c6d559bd12fa9e16d646b Mon Sep 17 00:00:00 2001 From: Tanay Soni Date: Tue, 9 Jun 2020 11:45:25 +0200 Subject: [PATCH] Update build workflow --- .github/workflows/ci.yml | 3 +-- README.rst | 4 ++-- test/conftest.py | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6502e3ad4..c8fed2987 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,5 +1,4 @@ - -name: Haystack CI +name: Build on: push: diff --git a/README.rst b/README.rst index d5f231c1e..40c803e18 100644 --- a/README.rst +++ b/README.rst @@ -1,8 +1,8 @@ ******************************************************* Haystack — Neural Question Answering At Scale ******************************************************* -.. image:: https://travis-ci.org/deepset-ai/haystack.svg?branch=master - :target: https://travis-ci.org/deepset-ai/haystack +.. image:: https://github.com/deepset-ai/haystack/workflows/Build/badge.svg?branch=master + :target: https://github.com/deepset-ai/haystack/actions :alt: Build .. image:: https://img.shields.io/github/release/deepset-ai/haystack diff --git a/test/conftest.py b/test/conftest.py index ea8dd7e1c..48536c859 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -19,7 +19,7 @@ def elasticsearch_fixture(elasticsearch_dir): thetarfile = tarfile.open(fileobj=ftpstream, mode="r|gz") thetarfile.extractall(path=elasticsearch_dir) es_server = Popen([elasticsearch_dir / "elasticsearch-7.6.1/bin/elasticsearch"], stdout=PIPE, stderr=STDOUT) - time.sleep(30) + time.sleep(40) @pytest.fixture(scope="session")