Files
deb-python-dcos/CONTRIBUTING.md
José Armando García Sancio 1ed8c5a669 Add issue template (#559)
2016-04-07 14:41:23 -07:00

1.3 KiB

Contribution Guide for the DCOS-CLI

Thanks for contributing! Here are a few guidelines to get you started.

Submitting Issues

Please file feature requests and bugs through Github issues.

If you are submitting a bug report, please include:

  • dcos cli version: dcos --version
  • DCOS version
  • operating system
  • command that errored with --log-level=debug --debug

Creating PRs

Commit Message

Please describe the problem you are addressing and your proposed solution.

Style

We follow pep8 and isort conventions. You can make sure you follow these by running tox -e py34-syntax in the dcos-cli and cli directories.

Tests

Please include test(s) with your changes. Make sure to separate integration and unit tests. Please use our test helpers for integration tests and unit tests We run all tests on every PR, and won't look at a PR until all tests pass. Please see Running Tests on how to run our tests locally.

Thanks!

The DCOS-CLI Team