Hey guys, I just setup Circle CI to my git account. I’ve created a circle.yml but tests aren’t being run. It shows that it runs 0 tests under nosetests – what’s going on here?
I’m using django and my circle.yml looks like this:
Cool, I saw the issue. I didn’t have my circle.yml file in the root dir, but one dir above.
I’m trying to use Circle CI 2.0 and I have a docker command I run in my code. It’s a docker call to a public remote image. I’m trying to install docker, but don’t seem able to – I ran through the instructions here: https://circleci.com/docs/2.0/custom-images/
Do I have to push the image to Circle CI’s docker hub? Is there anyway to just install the docker command? I just need to run docker ___________.
But it’s missing being able to connect to the postgres db. I know I need to start it up in the docker container somehow and link it but I’m not sure how to do so.
I also don’t think I’m doing this completely the right way (I think I should be setting up my own docker image to run a lot of the “RUN” tasks that I’ve defined in the config.yml), but this is the fastest way I could understand getting it up.