Skip to content
Snippets Groups Projects
Commit 0472cee9 authored by sk2521's avatar sk2521
Browse files

Why is wheel acting so weird in during 'pip3 install -r requirements'?

I added 'pip instal wheel' so that it installs before all the other ones
parent f1e3a0f9
No related branches found
No related tags found
No related merge requests found
build-job: build-job:
stage: build stage: build
script: script:
- python3 -m venv venv - python3 -m venv venv
- . venv/bin/activate - . venv/bin/activate
- pip3 install -r requirements.txt --no-cache-dir - pip3 install wheel
- pip3 install -r requirements.txt --no-cache-dir
test-job:
stage: test test-job:
script: stage: test
- pytest script:
- pytest
# deploy-job:
# stage: deploy # deploy-job:
# script: # stage: deploy
# - echo "Now I'm Deploying to VM!" # script:
# - flask run & # - echo "Now I'm Deploying to VM!"
# - echo "Now I'm Deploying to Heroku!" # - flask run &
# - dpl --provider=heroku --app=metarl --api-key=5ccc3ae7-725e-4f9f-b441-0c9a28ebdc1b # - echo "Now I'm Deploying to Heroku!"
# - dpl --provider=heroku --app=metarl --api-key=5ccc3ae7-725e-4f9f-b441-0c9a28ebdc1b
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment