Closed jbrucker closed 1 year ago
I didnt really need wheel
, the reason that I put it in requirements.txt because I see the messagee below while installing requirements on my virtual env
I think that install selenium/(package that need to test) seperately in GitHub Action/Action script are better as you think.
This is a continuous of #153.
Do you really need 'wheel'? For what?
wheel
is used for creating "wheels" and setuptools.Packages that are needed to run tests, but not needed to run the app normally, should not be included in requirements.txt.
So, do you need
selenium
to run the app? Or just for testing?Packaged needed only for testing can either be added explicitly in your Action scripts on Github (or whatever C.I. server you use), or put them in a separate testing-requirements file.