Skip to content

Commit

Permalink
packe installation problem solved
Browse files Browse the repository at this point in the history
  • Loading branch information
sro committed Jan 19, 2018
1 parent 63c8a87 commit b84ac65
Show file tree
Hide file tree
Showing 8 changed files with 662 additions and 2 deletions.
11 changes: 11 additions & 0 deletions .idea/eds_e2e.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/preferred-vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

618 changes: 618 additions & 0 deletions .idea/workspace.xml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions tjobs_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
import sys


class TJob():
class TJob(unittest.TestCase):
proxyurl = "http://" + str(sys.argv[1]) + ":8080/"
proxies = {'http': proxyurl, 'https': proxyurl}

def test_send_request(self):
s = requests.Session()
response = s.get('http://www.elastest.io/', proxies=self.proxies, verify=False)
# response=s.get('http://etm:8091/')
print response.headers
print (response.headers)
assert "Elastest" in response.text


Expand Down

0 comments on commit b84ac65

Please sign in to comment.