Daniele Esposti
Daniele Esposti
- merged `requirements.txt` into `setup.py` - add package safety check - includes PR #170
- updated Travis config excluding Python 3.2 and 3.3 because not available anymore - switched to `pytest` for ergonomic unit testing - added Python 3.8 environment on Travis - updated...
## Current behaviour Consider a simple forbidden contract like this: ``` [importlinter] root_package = mypackage [importlinter:contract:1] name = My forbidden contract (internal packages only) type = forbidden source_modules = mypackage.one...
I noticed that `*Results` struct like `SprintResults` uses `u64` for size-related numerical value. I found also that at some point in the past they were defined as `usize` but then...
Added a basic implementation of the `backlog` API with the `put()` method implementing https://docs.atlassian.com/jira-software/REST/7.0.4/#agile/1.0/backlog
The `location()` method in the `Vehicle` class as duplicated; removed the duplicated version under the "not implemented" section.
Converting into `constcase` an already constcase string produce and unexpected result: ``` In [3]: stringcase.constcase("AAA_BBBB") Out[3]: 'A_A_A__B_B_B_B' ``` Trivia: `stringcase.constcase("AAA_BBBB").lower()` solves the issue