Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit 8ecefda

Browse files
committed
[client] test drone
1 parent 1feebab commit 8ecefda

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

.drone.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,30 +10,35 @@ steps:
1010
- name: client-test-38
1111
image: python:3.8
1212
commands:
13+
- pip3 install -r ci-requirements.txt --user
1314
- pip3 install -r requirements.txt --user
1415
- pip3 install -r test-requirements.txt --user
1516
- python3 -m pytest --no-header -vv --disable-warnings --cov=pycti --drone
1617
- name: client-test-39
1718
image: python:3.9
1819
commands:
20+
- pip3 install -r ci-requirements.txt --user
1921
- pip3 install -r requirements.txt --user
2022
- pip3 install -r test-requirements.txt --user
2123
- python3 -m pytest --no-header -vv --disable-warnings --cov=pycti --drone
2224
- name: client-test-310
2325
image: python:3.10
2426
commands:
27+
- pip3 install -r ci-requirements.txt --user
2528
- pip3 install -r requirements.txt --user
2629
- pip3 install -r test-requirements.txt --user
2730
- python3 -m pytest --no-header -vv --disable-warnings --cov=pycti --drone
2831
- name: client-test-311
2932
image: python:3.11
3033
commands:
34+
- pip3 install -r ci-requirements.txt --user
3135
- pip3 install -r requirements.txt --user
3236
- pip3 install -r test-requirements.txt --user
3337
- python3 -m pytest --no-header -vv --disable-warnings --cov=pycti --drone
3438
- name: client-test-312
3539
image: python:3.12
3640
commands:
41+
- pip3 install -r ci-requirements.txt --user
3742
- pip3 install -r requirements.txt --user
3843
- pip3 install -r test-requirements.txt --user
3944
- python3 -m pytest --no-header -vv --disable-warnings --cov=pycti --drone

ci-requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
wheel<0.46

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Filigran
2-
wheel<0.46
32
datefinder~=0.7.3
43
pika~=1.3.0
54
python-magic~=0.4.27; sys_platform == 'linux' or sys_platform == 'darwin'

test-requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ pytest-cov~=5.0
88
pytest_randomly~=3.8
99
types-python-dateutil>=2.8
1010
types-pytz>=2021.3.5
11+
wheel~=0.38

0 commit comments

Comments
 (0)