From de34c0def92880ad1491c2d7dfd145c64398eb90 Mon Sep 17 00:00:00 2001 From: rkansal47 Date: Thu, 1 Feb 2024 14:55:14 -0600 Subject: [PATCH 1/2] remove -k arg --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8aeca94..420aaee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,4 +57,4 @@ jobs: if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Test with pytest run: | - pytest -n 0 --durations 0 -v -m "not slow" -k ${{ matrix.pytest-file }} + pytest -n 0 --durations 0 -v -m "not slow" ${{ matrix.pytest-file }} From 5f971951392d4ee69fcb2b6d6c5fde026b1c511b Mon Sep 17 00:00:00 2001 From: Lint Action Date: Thu, 1 Feb 2024 20:55:47 +0000 Subject: [PATCH 2/2] Fix code style issues with Black --- jetnet/datasets/normalisations.py | 1 + jetnet/datasets/utils.py | 1 + 2 files changed, 2 insertions(+) diff --git a/jetnet/datasets/normalisations.py b/jetnet/datasets/normalisations.py index e81c8a2..f6141f4 100644 --- a/jetnet/datasets/normalisations.py +++ b/jetnet/datasets/normalisations.py @@ -1,6 +1,7 @@ """ Suite of common ways to normalise data. """ + from __future__ import annotations from abc import ABC, abstractmethod diff --git a/jetnet/datasets/utils.py b/jetnet/datasets/utils.py index 3d7dc89..4be8e73 100644 --- a/jetnet/datasets/utils.py +++ b/jetnet/datasets/utils.py @@ -1,6 +1,7 @@ """ Utility methods for datasets. """ + from __future__ import annotations import hashlib