Skip to content

Commit 65b266e

Browse files
committed
Revert part of 8793dec, fix commands, remove shippable.yml
1 parent ca6eddc commit 65b266e

File tree

6 files changed

+9
-27
lines changed

6 files changed

+9
-27
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ dist
1414
*.egg-info
1515
*.core
1616
.coverage
17+
.tox

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ before_install:
2525
- source travis/install.sh
2626
- source travis/ssh_setup.sh
2727
install:
28-
- pip install -e .
29-
- pip install -r docs/requirements.txt
28+
- pip install --upgrade --editable .
29+
- pip install --requirement docs/requirements.txt
3030
before_script:
3131
- PWNLIB_NOTERM=1 python -c 'from pwn import *; print pwnlib.term.term_mode'
3232
- PWNLIB_NOTERM=1 python -c 'from pwn import *; print pwnlib.term.term_mode'

TESTING.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@ Pwntools makes extensive use of unit tests and integration tests to ensure every
88
To run the test suite, it is beste to use Ubuntu 12.04 or 14.04, and run the following commands. **Be aware** that this will add a user to the machine, and create a public key for SSH login!
99

1010
```sh
11-
bash .travis_install.sh
12-
bash .travis_ssh_setup.sh
13-
pip setup.py develop
14-
cd docs
15-
PWNLIB_NOTERM=1 make clean doctest
11+
bash travis/install.sh
12+
bash travis/ssh_setup.sh
13+
pip install --upgrade --editable .
14+
PWNLIB_NOTERM=1 make -C docs doctest
1615
```
1716

1817
## New Tests

docs/source/install.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ If you are hacking on Pwntools locally, you'll want to do something like this:
3535
.. code-block:: bash
3636
3737
$ git clone https://github.com/Gallopsled/pwntools
38-
$ cd pwntools
39-
$ python setup.py develop
38+
$ pip install --upgrade --editable ./pwntools
4039
4140
.. _Ubuntu: https://launchpad.net/~pwntools/+archive/ubuntu/binutils

shippable.yml

-16
This file was deleted.

tox.ini

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22
envlist = py27
33
[testenv]
44
deps=-r{toxinidir}/requirements.txt
5-
-r{toxinidir}/docs/requirements.txt
6-
commands=make PWNLIB_NOTERM=1 -C docs clean doctest
5+
commands=make PWNLIB_NOTERM=1 -C docs doctest

0 commit comments

Comments
 (0)