Lint validation
Browse files- tests/test_validation.py +6 -0
tests/test_validation.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
import unittest
|
2 |
|
3 |
import pytest
|
@@ -7,6 +9,10 @@ from axolotl.utils.dict import DictDefault
|
|
7 |
|
8 |
|
9 |
class ValidationTest(unittest.TestCase):
|
|
|
|
|
|
|
|
|
10 |
def test_load_4bit_deprecate(self):
|
11 |
cfg = DictDefault(
|
12 |
{
|
|
|
1 |
+
"""Module for testing the validation module"""
|
2 |
+
|
3 |
import unittest
|
4 |
|
5 |
import pytest
|
|
|
9 |
|
10 |
|
11 |
class ValidationTest(unittest.TestCase):
|
12 |
+
"""
|
13 |
+
Test the validation module
|
14 |
+
"""
|
15 |
+
|
16 |
def test_load_4bit_deprecate(self):
|
17 |
cfg = DictDefault(
|
18 |
{
|