File tree 3 files changed +15
-4
lines changed
3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,9 @@ htmlcov
38
38
.coverage
39
39
.tox
40
40
41
+ # Pytest cache
42
+ .pytest_cache
43
+
41
44
# pycharm
42
45
.idea
43
46
Original file line number Diff line number Diff line change @@ -32,9 +32,6 @@ ADD . /auto-sklearn/
32
32
33
33
# Upgrade pip then install dependencies
34
34
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
38
35
39
36
# Install
40
- RUN pip3 install /auto-sklearn/
37
+ RUN pip3 install " /auto-sklearn[test, examples]"
Original file line number Diff line number Diff line change 13
13
14
14
import unittest
15
15
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
+
16
27
17
28
class TestMetadataGeneration (unittest .TestCase ):
18
29
def setUp (self ):
You can’t perform that action at this time.
0 commit comments