-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create test-specific 🐳 file #1082
Conversation
This reverts commit 2c30c68.
COPY package.json /usr/src/app/ | ||
RUN yarn | ||
|
||
COPY test_data.py /usr/src/app/ | ||
COPY mypy.ini /usr/src/app/ | ||
EXPOSE 3000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line was redundant.
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
- main |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have stopped using main
, so I removed it from this file.
Thanks for working on this @michplunkett, feel free to merge it whenever you can. |
I'm workin' on some school stuff now, but I'll likely merge it tomorrow when I can make sure everything is 💯 . |
I ran everything on my local again, and it looks like we're good to go. |
Related to:
make test
#1054Description of Changes
Creating a test-specific 🐳 Docker file. This will be the first step in implementing PostgreSQL in the testing environment so that we can get a true 1:1 comparison between the environments.
Tests and linting
develop
branch.pytest
passes on my local development environment.pre-commit
passes on my local development environment.