Tox configuration and integration

Basic tox config Let’s start with a basic config that will run unittest and measure coverage. Important option here is usedevelop = true. With this it won’t install your package to virtualnenv and coverage can be measured. Another thing is to erase previous coverage reports. Codestyle Next, I wanted to check the codestyle. I use pycodestyle, … Read more