Skip to content

mpapenbr/python-racelogger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

73 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Overview

docs Documentation Status
package

Racelogger for iRacelog

  • Free software: Apache Software License 2.0

Documentation

https://python-racelogger.readthedocs.io/

Development

After checkout you should ensure some development utils with:

pip install -r requirement_dev.txt

To run all the tests run:

tox

Note, to combine the coverage data from all the tox environments run:

Windows
set PYTEST_ADDOPTS=--cov-append
tox
Other
PYTEST_ADDOPTS=--cov-append tox

Certificates (Lets encrypt issue on 2021-09-30)

On 2021-09-30 the cert "DST Root CA X3" expired. This was by design but caused some trouble accessing sites with certs issued by letsencrypt. Without going into the details it turned out that certain environments had different problems. Browsers were fine, most curl requests, too.

Using Python (3.9) with Windows was tricky. What worked "all the time", stopped to do so and issued a certificate expired error message.

In the end, importing and using certifi did the trick.

See also https://community.letsencrypt.org/t/help-thread-for-dst-root-ca-x3-expiration-september-2021/149190/1213