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()