Skip to content

Commit 45571c6

Browse files
committed
fix
1 parent a03be96 commit 45571c6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/full_test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@ jobs:
128128
pip3 install --upgrade pip --user
129129
pip3 install --upgrade setuptools
130130
pip3 install numpy==1.26.4
131-
python -c "import subprocess, sys, re; [subprocess.run([sys.executable, '-m', 'pip3', 'install', re.sub(r'#.*', '', line.strip())], check=False) for line in open('deeplake/requirements/common.txt') if line.strip() and not line.startswith('#') and re.match(r'^[a-zA-Z0-9]', line.strip())]"
132-
python -c "import subprocess, sys, re; [subprocess.run([sys.executable, '-m', 'pip3', 'install', re.sub(r'#.*', '', line.strip())], check=False) for line in open('deeplake/requirements/tests.txt') if line.strip() and not line.startswith('#') and re.match(r'^[a-zA-Z0-9]', line.strip())]"
133-
python -c "import subprocess, sys, re; [subprocess.run([sys.executable, '-m', 'pip3', 'install', re.sub(r'#.*', '', line.strip())], check=False) for line in open('deeplake/requirements/plugins.txt') if line.strip() and not line.startswith('#') and re.match(r'^[a-zA-Z0-9]', line.strip())]"
131+
python -c "import subprocess, sys, re; [subprocess.run([sys.executable, '-m', 'pip', 'install', re.sub(r'#.*', '', line.strip())], check=False) for line in open('deeplake/requirements/common.txt') if line.strip() and not line.startswith('#') and re.match(r'^[a-zA-Z0-9]', line.strip())]"
132+
python -c "import subprocess, sys, re; [subprocess.run([sys.executable, '-m', 'pip', 'install', re.sub(r'#.*', '', line.strip())], check=False) for line in open('deeplake/requirements/tests.txt') if line.strip() and not line.startswith('#') and re.match(r'^[a-zA-Z0-9]', line.strip())]"
133+
python -c "import subprocess, sys, re; [subprocess.run([sys.executable, '-m', 'pip', 'install', re.sub(r'#.*', '', line.strip())], check=False) for line in open('deeplake/requirements/plugins.txt') if line.strip() and not line.startswith('#') and re.match(r'^[a-zA-Z0-9]', line.strip())]"
134134
pip3 install -e .[all]
135135
136136
- name: Run fast tests
@@ -202,9 +202,9 @@ jobs:
202202
run: |
203203
pip3 install --upgrade pip --user
204204
pip3 install --upgrade setuptools
205-
python -c "import subprocess, sys, re; [subprocess.run([sys.executable, '-m', 'pip3', 'install', re.sub(r'#.*', '', line.strip())], check=False) for line in open('deeplake/requirements/common.txt') if line.strip() and not line.startswith('#') and re.match(r'^[a-zA-Z0-9]', line.strip())]"
206-
python -c "import subprocess, sys, re; [subprocess.run([sys.executable, '-m', 'pip3', 'install', re.sub(r'#.*', '', line.strip())], check=False) for line in open('deeplake/requirements/tests.txt') if line.strip() and not line.startswith('#') and re.match(r'^[a-zA-Z0-9]', line.strip())]"
207-
python -c "import subprocess, sys, re; [subprocess.run([sys.executable, '-m', 'pip3', 'install', re.sub(r'#.*', '', line.strip())], check=False) for line in open('deeplake/requirements/plugins.txt') if line.strip() and not line.startswith('#') and re.match(r'^[a-zA-Z0-9]', line.strip())]"
205+
python -c "import subprocess, sys, re; [subprocess.run([sys.executable, '-m', 'pip', 'install', re.sub(r'#.*', '', line.strip())], check=False) for line in open('deeplake/requirements/common.txt') if line.strip() and not line.startswith('#') and re.match(r'^[a-zA-Z0-9]', line.strip())]"
206+
python -c "import subprocess, sys, re; [subprocess.run([sys.executable, '-m', 'pip', 'install', re.sub(r'#.*', '', line.strip())], check=False) for line in open('deeplake/requirements/tests.txt') if line.strip() and not line.startswith('#') and re.match(r'^[a-zA-Z0-9]', line.strip())]"
207+
python -c "import subprocess, sys, re; [subprocess.run([sys.executable, '-m', 'pip', 'install', re.sub(r'#.*', '', line.strip())], check=False) for line in open('deeplake/requirements/plugins.txt') if line.strip() and not line.startswith('#') and re.match(r'^[a-zA-Z0-9]', line.strip())]"
208208
pip3 install -e .[all]
209209
210210
- name: Run flaky tests
@@ -280,8 +280,8 @@ jobs:
280280
pip3 install --upgrade pip --user
281281
pip3 install --upgrade setuptools
282282
pip3 install "numpy==1.26.4"
283-
python -c "import subprocess, sys, re; [subprocess.run([sys.executable, '-m', 'pip3', 'install', re.sub(r'#.*', '', line.strip())], check=False) for line in open('deeplake/requirements/common.txt') if line.strip() and not line.startswith('#') and re.match(r'^[a-zA-Z0-9]', line.strip())]"
284-
python -c "import subprocess, sys, re; [subprocess.run([sys.executable, '-m', 'pip3', 'install', re.sub(r'#.*', '', line.strip())], check=False) for line in open('deeplake/requirements/tests.txt') if line.strip() and not line.startswith('#') and re.match(r'^[a-zA-Z0-9]', line.strip())]"
283+
python -c "import subprocess, sys, re; [subprocess.run([sys.executable, '-m', 'pip', 'install', re.sub(r'#.*', '', line.strip())], check=False) for line in open('deeplake/requirements/common.txt') if line.strip() and not line.startswith('#') and re.match(r'^[a-zA-Z0-9]', line.strip())]"
284+
python -c "import subprocess, sys, re; [subprocess.run([sys.executable, '-m', 'pip', 'install', re.sub(r'#.*', '', line.strip())], check=False) for line in open('deeplake/requirements/tests.txt') if line.strip() and not line.startswith('#') and re.match(r'^[a-zA-Z0-9]', line.strip())]"
285285
pip3 install -e .[all]
286286
pip3 install -e buH
287287

0 commit comments

Comments
 (0)