Skip to content

Commit

Permalink
Remove pipenv and update dependencies (#22)
Browse files Browse the repository at this point in the history
* Remove pipenv (#17)

* Remove pipenv

* Add pre-commit dependencies

* Remove pipenv and update dependencies (#19)

* Update pytest

* Add #nosec to subprocess line

* Add pyup config file

* Bump to 0.3.2
  • Loading branch information
anapaulagomes authored Nov 25, 2018
1 parent dc54148 commit 9581d3d
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 465 deletions.
2 changes: 2 additions & 0 deletions .pyup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
branch: dev
schedule: every week
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [0.3.2] - 2018-11-25
### Added
- Add pyup support
### Modified
- Update dependencies

## [0.3.0] - 2018-08-09
### Added
- Option to run tests modified in the current branch
Expand All @@ -16,7 +22,8 @@
### Added
- Run the tests according with changed files

[Unreleased]: https://github.com/anapaulagomes/pytest-picked/compare/v0.3.0...HEAD
[Unreleased]: https://github.com/anapaulagomes/pytest-picked/compare/v0.3.2...HEAD
[0.3.2]: https://github.com/anapaulagomes/pytest-picked/compare/v0.3.0...v0.3.2
[0.3.0]: https://github.com/anapaulagomes/pytest-picked/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/anapaulagomes/pytest-picked/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/anapaulagomes/pytest-picked/compare/a5d86647c511ea56d0d4c42b416b2d7bac8111f6...v0.1.0
17 changes: 0 additions & 17 deletions Pipfile

This file was deleted.

445 changes: 0 additions & 445 deletions Pipfile.lock

This file was deleted.

3 changes: 2 additions & 1 deletion pytest_picked/modes.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ def affected_tests(self):
return files, folders

def git_output(self):
output = subprocess.run(self.command(), stdout=subprocess.PIPE)
output = subprocess.run( # nosec
self.command(), stdout=subprocess.PIPE)
return output.stdout.decode("utf-8")

def print_command(self):
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pytest==3.10.1
3 changes: 3 additions & 0 deletions requirements_test.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
black==18.9b0
isort==4.3.4
pylint==2.1.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def read(fname):

setup(
name="pytest-picked",
version="0.3.0",
version="0.3.2",
author="Ana Paula Gomes",
author_email="apgomes88@gmail.com",
maintainer="Ana Paula Gomes",
Expand Down

0 comments on commit 9581d3d

Please sign in to comment.