File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 16
16
17
17
(require 'test-cockpit )
18
18
19
- (defvar test-cockpit-python-build-ext-command " python setup.py build_ext --inplace "
19
+ (defvar test-cockpit-python-build-ext-command " pip install -e . --no-deps "
20
20
" The command to build the python extensions." )
21
21
22
22
(defclass test-cockpit-python-engine (test-cockpit--engine) ())
Original file line number Diff line number Diff line change 124
124
((projectile-project-type () ((:output 'python-pip :occur 1 )))
125
125
(projectile-project-root (&optional _dir) ((:input-matcher (lambda (_ ) t ) :output " foo-project" )))
126
126
(buffer-file-name () ((:output " /home/user/project/tests/path/to/test_foo.py" )))
127
- (compile (command) ((:input '(" python setup.py build_ext --inplace && pytest --color=yes --last-failed --no-cov" )
127
+ (compile (command) ((:input '(" pip install -e . --no-deps && pytest --color=yes --last-failed --no-cov" )
128
128
:output 'success :occur 1 ))))
129
129
(test-cockpit-test-project '(" --last-failed" " build_ext" ))))
130
130
You can’t perform that action at this time.
0 commit comments