Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pghilardi/atom-python-test
Run py.test tests on Atom
https://github.com/pghilardi/atom-python-test
Last synced: 9 days ago
JSON representation
Run py.test tests on Atom
- Host: GitHub
- URL: https://github.com/pghilardi/atom-python-test
- Owner: pghilardi
- License: mit
- Archived: true
- Created: 2016-01-14T23:24:22.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-02-28T14:03:54.000Z (over 4 years ago)
- Last Synced: 2024-08-01T10:16:07.177Z (3 months ago)
- Language: JavaScript
- Size: 202 KB
- Stars: 16
- Watchers: 4
- Forks: 9
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
## Description
* Run py.tests and unitest.TestCase tests on Atom.
## Requirements
* You need py.test installed to use this package:
```
pip install pytest
```When using virtualenv, the recommended workflow is:
* Activate your virtualenv on terminal.
* Run atom editor, so this plug-in will get py.test from virtualenv (or use atom-python-virtualenv plug-in).## configuration
On settings you can configure the path to the python executable, so you can choose your python executable from virtualenv, miniconda, pyenv, etc. You can configure additionalArgs to the pytest
command line executor too.## Usage
1) Running all tests ```(Ctrl + Alt + T)```
2) Run test under cursor ```(Ctrl + Alt + C)```
3) Toggle (on/off) the tests panel ```(Ctrl + Alt + H)```