Skip to content

Commit b5d4f32

Browse files
authored
fix: tests regression due to typo and CI settings(#116)
* fix: test typo * fix: branch glob on base workflow
1 parent 1704002 commit b5d4f32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/base.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
on:
22
push:
33
branches:
4-
- "*"
4+
- "**"
55

66
jobs:
77
test:

tests/test_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from pydeequ.configs import _extract_major_minor_versions
33

44

5-
@pytest.parametrize(
5+
@pytest.mark.parametrize(
66
"full_version, major_minor_version",
77
[
88
("3.2.1", "3.2"),

0 commit comments

Comments
 (0)