Skip to content

Commit

Permalink
Use consistent virtualenv call
Browse files Browse the repository at this point in the history
  • Loading branch information
jparr committed Jul 8, 2018
1 parent d3353cc commit b92f484
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
8 changes: 4 additions & 4 deletions docs/installing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Installing from PyPi
********************

.. code-block:: bash
$ virtualenv env -p python3
$ python3 -m virtualenv env
$ source/env/bin/activate
$ pip install aws_ir
$ aws_ir -h
Expand All @@ -23,7 +23,7 @@ Installing From Github

.. code-block:: bash
$ virtualenv env -p python3
$ python3 -m virtualenv env
$ source/env/bin/activate
$ pip install git+ssh://[email protected]/ThreatResponse/aws_ir.git@master
$ aws_ir -h
Expand All @@ -35,7 +35,7 @@ Local Build and Install
$ git clone https://github.com/ThreatResponse/aws_ir.git
$ cd aws_ir
$ virtualenv env -p python3
$ python3 -m virtualenv env
$ source/env/bin/activate
$ pip install .
$ aws_ir -h
Expand All @@ -49,7 +49,7 @@ In the previous two example dependencies are automatically resolved, if you simp
$ git clone https://github.com/ThreatResponse/aws_ir.git
$ cd aws_ir
$ virtualenv env -p python3
$ python3 -m virtualenv env
$ source/env/bin/activate
$ pip install -r requirements.txt
$ ./bin/aws_ir -h
Expand Down
2 changes: 1 addition & 1 deletion docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Installation

.. code-block:: bash
$ virtualenv env -p python3
$ python3 -m virtualenv env
$ source/env/bin/activate
$ pip install aws_ir
Expand Down
2 changes: 0 additions & 2 deletions tests/test_case_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,6 @@ def test_rename_log_file():
base_dir=log_base
)

print(result)

assert result is True


Expand Down

0 comments on commit b92f484

Please sign in to comment.