Explore >> Select a destination


You are here

avilpage.com
| | blog.nuculabs.de
11.4 parsecs away

Travel
| | Hi ?? In this article I will show you how to test your Python projects with Tox. Introduction Tox is a tool for automating testing in Python, their vision is to standardize the testing process. It can be used to easily test your project using multiple Python interpreters and run various commands. Getting Started To get started all you need to add to your project is a tox.ini file. To simplify running the tests we will make use of the following Dockerfile, which contains Python interpreters for 3.6 and 3.7
| | www.ccampo.me
15.8 parsecs away

Travel
| | I recently created a simple example on how to enable remote debuggingusing Delvefor a Go application running inan Alpine Linux Docker container. This may be ...
| | donsbot.com
10.0 parsecs away

Travel
| | Get a working aarch64 box This post show how to get a working aarch64 env on the MacBook Air (M1) for Haskell. I'm working on the road at the moment, so picked up a MacBook Air with the M1 chip, to travel light. I wanted to use it as a development environment for Glean (c.f....
| | vxlabs.com
70.4 parsecs away

Travel
| The new Python package and project manager uv is in fact amazing. I say that, because it's really fast, but more importantly because this single tool does a whole lot, really fast: Installing Python binaries, installing and running packages in self-contained environments like pipx, managing virtual environments. However, I've been avoiding it so far due to one flaw: uv defaults to installing its virtual environment and all dependencies into the .venv sub-directory of your project, almost exactly like the...