From 19c35db19be0872fb8d97200da3b2cf296580602 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Fri, 18 Sep 2020 10:46:11 +0100 Subject: [PATCH] updated --- Pipfile | 4 ++++ features/demo.feature | 5 +++++ harness/conftest.py | 2 ++ 3 files changed, 11 insertions(+) diff --git a/Pipfile b/Pipfile index 55e43ca..4e672c8 100644 --- a/Pipfile +++ b/Pipfile @@ -7,11 +7,15 @@ verify_ssl = true flask = "*" pytest = "*" behave = "*" +selenium = "*" +django = "*" [packages] flask = "*" pytest = "*" behave = "*" +selenium = "*" +djanjgo = "*" [requires] python_version = "3.8" \ No newline at end of file diff --git a/features/demo.feature b/features/demo.feature index e69de29..12f020a 100644 --- a/features/demo.feature +++ b/features/demo.feature @@ -0,0 +1,5 @@ +Feature: Demo Feature + Scenario: Demo1 + Given A sentence + When The sentence is inspected + Then The word "the" should be found diff --git a/harness/conftest.py b/harness/conftest.py index 7dd0114..b7e7423 100755 --- a/harness/conftest.py +++ b/harness/conftest.py @@ -1,6 +1,8 @@ import configparser import pytest +import fixtures + config = configparser.ConfigParser()