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
29 changes: 29 additions & 0 deletions .github/workflows/test_windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Run tests on Windows.
name: test_windows
on: [push, pull_request]
permissions: read-all
jobs:
test_windows:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: windows-2025
python-version: '3.14'
toxenv: 'py314'
steps:
- name: Configure git
run: git config --global core.autocrlf false
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install tox
run: |
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: Run tests
run: |
tox -e ${{ matrix.toxenv }}
28 changes: 0 additions & 28 deletions appveyor.yml

This file was deleted.

27 changes: 0 additions & 27 deletions config/appveyor/install.ps1

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "l2tdevtools"
version = "20260527"
version = "20260704"
description = "Development tools for the log2timeline projects"
maintainers = [
{ name = "Log2Timeline maintainers", email = "log2timeline-maintainers@googlegroups.com" },
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
envlist = py3{10,11,12,13,14},black,coverage,docformatter,pylint,wheel

[testenv]
allowlist_externals = ./run_tests.py
pip_pre = True
passenv =
CFLAGS
Expand All @@ -17,7 +16,7 @@ deps =
setuptools >= 65
wheel
commands =
py3{10,11,12,13,14}: ./run_tests.py
py3{10,11,12,13,14}: python run_tests.py
coverage: coverage erase
coverage: coverage run --source=l2tdevtools --omit="*_test*,*__init__*,*test_lib*" run_tests.py
coverage: coverage xml
Expand Down
Loading