Skip to content

Commit

Permalink
Deploy Travis CI build 1256 to GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
travis-ci committed Feb 1, 2020
1 parent a23d33a commit 1dc08f6
Show file tree
Hide file tree
Showing 10 changed files with 109 additions and 986 deletions.
3 changes: 1 addition & 2 deletions demo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from pkg_resources import DistributionNotFound, get_distribution

from pkg_resources import get_distribution, DistributionNotFound

try:
__version__ = get_distribution('TemplateDemo').version
Expand Down
1 change: 1 addition & 0 deletions demo/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@


def describe_feet_to_meters():

def when_integer(expect):
expect(utils.feet_to_meters(42)) == 12.80165

Expand Down
1 change: 0 additions & 1 deletion docs/about/changelog.md

This file was deleted.

3 changes: 3 additions & 0 deletions docs/about/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# 0.0.0 (YYYY-MM-DD)

- TBD
1 change: 0 additions & 1 deletion docs/about/contributing.md

This file was deleted.

76 changes: 76 additions & 0 deletions docs/about/contributing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# Setup

## Requirements

* Make:
* macOS: `$ xcode-select --install`
* Linux: [https://www.gnu.org/software/make](https://www.gnu.org/software/make)
* Windows: [https://mingw.org/download/installer](https://mingw.org/download/installer)
* Python: `$ pyenv install`
* Poetry: [https://poetry.eustace.io/docs/#installation](https://poetry.eustace.io/docs/#installation)
* Graphviz:
* macOS: `$ brew install graphviz`
* Linux: [https://graphviz.org/download](https://graphviz.org/download/)
* Windows: [https://graphviz.org/download](https://graphviz.org/download/)

To confirm these system dependencies are configured correctly:

```text
$ make doctor
```

## Installation

Install project dependencies into a virtual environment:

```text
$ make install
```

# Development Tasks

## Manual

Run the tests:

```text
$ make test
```

Run static analysis:

```text
$ make check
```

Build the documentation:

```text
$ make docs
```

## Automatic

Keep all of the above tasks running on change:

```text
$ make watch
```

> In order to have OS X notifications, `brew install terminal-notifier`.
# Continuous Integration

The CI server will report overall build status:

```text
$ make ci
```

# Release Tasks

Release to PyPI:

```text
$ make upload
```
1 change: 0 additions & 1 deletion docs/about/license.md

This file was deleted.

21 changes: 21 additions & 0 deletions docs/about/license.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
**The MIT License (MIT)**

Copyright © 2019, Jace Browning

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
1 change: 0 additions & 1 deletion docs/index.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/requirements.txt

This file was deleted.

Loading

0 comments on commit 1dc08f6

Please sign in to comment.