Skip to content

Commit b03dddd

Browse files
committed
Revert "fix docker workflow (#1526)"
This reverts commit 4f691a1.
1 parent c64f0fd commit b03dddd

File tree

3 files changed

+4
-15
lines changed

3 files changed

+4
-15
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ htmlcov
3838
.coverage
3939
.tox
4040

41-
# Pytest cache
42-
.pytest_cache
43-
4441
# pycharm
4542
.idea
4643

Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ ADD . /auto-sklearn/
3232

3333
# Upgrade pip then install dependencies
3434
RUN pip3 install --upgrade pip
35+
RUN pip3 install pytest>=4.6.* pep8 codecov pytest-cov flake8 openml
36+
RUN cat /auto-sklearn/requirements.txt | xargs -n 1 -L 1 pip3 install
37+
RUN pip3 install jupyter
3538

3639
# Install
37-
RUN pip3 install "/auto-sklearn[test, examples]"
40+
RUN pip3 install /auto-sklearn/

test/test_scripts/test_metadata_generation.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,6 @@
1313

1414
import unittest
1515

16-
# Abstracted to here to make changing them easier
17-
# seems to be quite fidely with github actions
18-
# Recommended to set a minimum of 60
19-
timeouts = {
20-
1: 60, # create commands
21-
2: 180, # generate metadata
22-
3: 60, # get performance of configurations
23-
4: 90, # Calculate metafeatures
24-
5: 60, # Create aslib files
25-
}
26-
2716

2817
class TestMetadataGeneration(unittest.TestCase):
2918
def setUp(self):

0 commit comments

Comments
 (0)