Skip to content

Commit aee728a

Browse files
Merge pull request #3 from nicolasbisurgi/feature_ci_pipeline
Feature ci pipeline
2 parents f04867c + 018923c commit aee728a

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/unit_test_pipeline.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ jobs:
2626

2727
- name: Install dependencies
2828
run: |
29-
pip install -e .
30-
pip install pytest
29+
pip install -e .[unit_test]
3130
3231
- name: Retrieve TM1 Connection Details
3332
id: get-connection

setup.py

+6
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@
4747
"dev": [
4848
"pytest",
4949
"pytest-xdist"
50+
],
51+
"unit_test": [
52+
"pandas",
53+
"pytest",
54+
"pytest-xdist",
55+
"python-dateutil"
5056
]
5157
},
5258
python_requires='>=3.6',

0 commit comments

Comments
 (0)