From 1752e9cc6fa770910d823798d9b82ad7c2903a70 Mon Sep 17 00:00:00 2001 From: Nitish Srivastava <43022982+nitishSr@users.noreply.github.com> Date: Fri, 21 Aug 2020 11:36:57 +0530 Subject: [PATCH] Updates setup.py to fix the installation issue The path to file JiraRobotTest.txt and FILE.txt were wrong. The Acceptance folder name was mentioned incorrect, due to which while installation, the setup would break and report an error for the file not found referenced under wrong path. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index fb80c1e..0f46a9d 100644 --- a/setup.py +++ b/setup.py @@ -51,6 +51,6 @@ 'jira >= 0.25' ], packages = ['JiraRobot'], - data_files = [('JiraRobotTests', ['Tests/acceptance/JiraRobotTest.txt', 'Tests/acceptance/FILE.txt', 'Docs/JiraRobot-KeywordDocumentation.html'])], + data_files = [('JiraRobotTests', ['Tests/Acceptance/JiraRobotTest.txt', 'Tests/Acceptance/FILE.txt', 'Docs/JiraRobot-KeywordDocumentation.html'])], download_url = 'https://github.com/NaviNet/JiraRobot/tarball/1.0', - ) \ No newline at end of file + )