Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

### Changes

* Change tests to use secure variant of database config that stops logging secrets
* i.e. might be copied to production code

## [1.0.0] - 2026-04-24

### Changed
Expand Down
5 changes: 3 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import json
import os
import re
from dataclasses import dataclass
from dataclasses import dataclass, field
from importlib import import_module
from pathlib import Path

Expand All @@ -39,7 +39,8 @@ class TrackingConfig:
dbport: str
dbuser: str
dbname: str
dbpass: str
# Safer for tests to use secure variant i.e. might be copied to production code
dbpass: str = field(repr=False)

@property
def url(self):
Expand Down