Skip to content
Open
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: 3 additions & 2 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Pylint

env:
FAIL_UNDER: "9.5"
FAIL_UNDER: "10.0"

on: [push, pull_request]

Expand All @@ -24,4 +24,5 @@ jobs:
pip install coverage
- name: Analysing the code with pylint
run: |
pylint --fail-under=${FAIL_UNDER} basicts scripts
pylint --fail-under=${FAIL_UNDER} basicts scripts tests
isort -c basicts scripts tests
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[MASTER]

# Files or directories to be skipped. They should be base names, not paths.
ignore=baselines,assets
ignore=baselines,assets,checkpoints

# Files or directories matching the regex patterns are skipped. The regex
# matches against base names, not paths.
Expand Down
8 changes: 3 additions & 5 deletions tests/basicts_test/scaler_test/test_min_max_scaler.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import copy
import json
import os
import unittest
import copy
import json


import numpy as np
import torch
Expand All @@ -10,9 +11,6 @@


class TestMinMaxScaler(unittest.TestCase):
"""
Test the MinMaxScaler class.
"""

def setUp(self):
# Mock dataset description and data
Expand Down