Skip to main content
Redhat Developers  Logo
  • Products

    Featured

    • Red Hat Enterprise Linux
      Red Hat Enterprise Linux Icon
    • Red Hat OpenShift AI
      Red Hat OpenShift AI
    • Red Hat Enterprise Linux AI
      Linux icon inside of a brain
    • Image mode for Red Hat Enterprise Linux
      RHEL image mode
    • Red Hat OpenShift
      Openshift icon
    • Red Hat Ansible Automation Platform
      Ansible icon
    • Red Hat Developer Hub
      Developer Hub
    • View All Red Hat Products
    • Linux

      • Red Hat Enterprise Linux
      • Image mode for Red Hat Enterprise Linux
      • Red Hat Universal Base Images (UBI)
    • Java runtimes & frameworks

      • JBoss Enterprise Application Platform
      • Red Hat build of OpenJDK
    • Kubernetes

      • Red Hat OpenShift
      • Microsoft Azure Red Hat OpenShift
      • Red Hat OpenShift Virtualization
      • Red Hat OpenShift Lightspeed
    • Integration & App Connectivity

      • Red Hat Build of Apache Camel
      • Red Hat Service Interconnect
      • Red Hat Connectivity Link
    • AI/ML

      • Red Hat OpenShift AI
      • Red Hat Enterprise Linux AI
    • Automation

      • Red Hat Ansible Automation Platform
      • Red Hat Ansible Lightspeed
    • Developer tools

      • Red Hat Trusted Software Supply Chain
      • Podman Desktop
      • Red Hat OpenShift Dev Spaces
    • Developer Sandbox

      Developer Sandbox
      Try Red Hat products and technologies without setup or configuration fees for 30 days with this shared Openshift and Kubernetes cluster.
    • Try at no cost
  • Technologies

    Featured

    • AI/ML
      AI/ML Icon
    • Linux
      Linux Icon
    • Kubernetes
      Cloud icon
    • Automation
      Automation Icon showing arrows moving in a circle around a gear
    • View All Technologies
    • Programming Languages & Frameworks

      • Java
      • Python
      • JavaScript
    • System Design & Architecture

      • Red Hat architecture and design patterns
      • Microservices
      • Event-Driven Architecture
      • Databases
    • Developer Productivity

      • Developer productivity
      • Developer Tools
      • GitOps
    • Secure Development & Architectures

      • Security
      • Secure coding
    • Platform Engineering

      • DevOps
      • DevSecOps
      • Ansible automation for applications and services
    • Automated Data Processing

      • AI/ML
      • Data Science
      • Apache Kafka on Kubernetes
      • View All Technologies
    • Start exploring in the Developer Sandbox for free

      sandbox graphic
      Try Red Hat's products and technologies without setup or configuration.
    • Try at no cost
  • Learn

    Featured

    • Kubernetes & Cloud Native
      Openshift icon
    • Linux
      Rhel icon
    • Automation
      Ansible cloud icon
    • Java
      Java icon
    • AI/ML
      AI/ML Icon
    • View All Learning Resources

    E-Books

    • GitOps Cookbook
    • Podman in Action
    • Kubernetes Operators
    • The Path to GitOps
    • View All E-books

    Cheat Sheets

    • Linux Commands
    • Bash Commands
    • Git
    • systemd Commands
    • View All Cheat Sheets

    Documentation

    • API Catalog
    • Product Documentation
    • Legacy Documentation
    • Red Hat Learning

      Learning image
      Boost your technical skills to expert-level with the help of interactive lessons offered by various Red Hat Learning programs.
    • Explore Red Hat Learning
  • Developer Sandbox

    Developer Sandbox

    • Access Red Hat’s products and technologies without setup or configuration, and start developing quicker than ever before with our new, no-cost sandbox environments.
    • Explore Developer Sandbox

    Featured Developer Sandbox activities

    • Get started with your Developer Sandbox
    • OpenShift virtualization and application modernization using the Developer Sandbox
    • Explore all Developer Sandbox activities

    Ready to start developing apps?

    • Try at no cost
  • Blog
  • Events
  • Videos

How Fedora and tox make Python testing easier

January 17, 2023
Lumír Balhar
Related topics:
Programming languages & frameworksGitOpsPython
Related products:
Red Hat Enterprise Linux

Share:

    Python developers love Fedora, and Fedora loves Python. Therefore we—the Python maintenance team in Red Hat—are doing our best to provide you with all the versions of Python as soon as they are available. We even maintain some of them long after upstream developers give up.

    Why is this range of support important? Some Python developers like to stay with an old and stable Python and don't change it until really necessary. Those developers frequently use Red Hat Enterprise Linux or CentOS. On the opposite side of the Gauss bell curve are developers who are always using the newest releases of Python, and even a few hardcore percent using Python pre-release versions.

    It does not really matter which group you fall into because users of your applications or libraries might be doing the exact opposite. And therefore, it's a good idea to test your Python code with more than one Python version.

    The tox tool allows you to run your tests in multiple Python environments with minimal configuration. But tox itself does not contain Python interpreters—and that's where Fedora enters the scene.

    Comprehensive support for Python versions in Fedora

    The following Python interpreters are available in the current stable release of Fedora (release 37). These are all CPython (the main Python implementation):

    • 2.7 (unsupported upstream since January 2021)
    • 3.6 (unsupported upstream since December 2021)
    • 3.7
    • 3.8
    • 3.9
    • 3.10
    • 3.11
    • 3.12 (second alpha release, as of 28th of November 2022)

    Besides CPython, we also support the following versions of PyPy (Python written in Python):

    • pypy (Python 2.7)
    • pypy3.7
    • pypy3.8
    • pypy3.9

    Fast delivery downstream

    That's a lot of Pythons! But if you are a bleeding-edge user, you care about our speed of delivery as well. So let's take the last stable Python 3.11 as an example.

    The first alpha version, released on October 5th, 2021, took us only seven days before the first build of Python 3.11 appeared in the Fedora build system (Koji). Half a year and a couple of alpha releases after that, it took only three days to deliver the first beta release to users of Fedora Linux after the beta was released upstream.

    If you are an early adopter, you probably know that it usually takes a few months before pre-release versions of Python appear in GitHub Actions, Travis CI, or other continuous integration (CI) providers. Fedora is generally much faster than those.

    So in Fedora Linux, we have all you need to test your Python apps and libraries. But what if you are not a user of Fedora? Fedora-python-tox is here to help.

    Going beyond Fedora

    Fedora-python-tox is a container image based on the latest stable Fedora release, maintained by the same team of Python lovers at Fedora. In this container image, we combine all the aforementioned pieces (and some more bells and whistles) with compact packaging and release it on Docker Hub. The container image also contains a script that makes it very easy to use, whether the code you want to test is available on your local machine or in some remote version control repository.

    There is one more important benefit. Suppose you develop applications or libraries for Fedora Linux, Red Hat Enterprise Linux, or others from the RPM family. In that case, you might need some specific RPM packages for your tests to run—for example, some library headers or Python bindings for dnf. The container image is prepared for that, and the only thing it needs is a list of RPM packages to install before the container executes tox. That's it.

    And this is not the end. Last but not least, we provide a GitHub action named tox-github-action, which makes it even easier for you to integrate the solution in this article into your CI solution. If you use GitHub to develop apps or libraries for Fedora, there is no need to run your CI tests on Ubuntu anymore.

    Last updated: March 14, 2023

    Related Posts

    • Basics of Go in Fedora

    • What, no Python in Red Hat Enterprise Linux 8?

    • Argo CD and Tekton: Match made in Kubernetes heaven

    • Building modern CI/CD workflows for serverless applications with Red Hat OpenShift Pipelines and Argo CD, Part 1

    Recent Posts

    • Assessing AI for OpenShift operations: Advanced configurations

    • OpenShift Lightspeed: Assessing AI for OpenShift operations

    • OpenShift Data Foundation and HashiCorp Vault securing data

    • Axolotl meets LLM Compressor: Fast, sparse, open

    • What’s new for developers in Red Hat OpenShift 4.19

    What’s up next?

    Getting GitOps e-book card

    Learn how to navigate the complex world of modern container-based software development and distribution with Getting GitOps: A Practical Platform with OpenShift, Argo CD, and Tekton.

    Get the e-book
    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Products

    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform

    Build

    • Developer Sandbox
    • Developer Tools
    • Interactive Tutorials
    • API Catalog

    Quicklinks

    • Learning Resources
    • E-books
    • Cheat Sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site Status Dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Report a website issue