You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-3Lines changed: 8 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Assignment 2 for the DataCamp course X-DataScience Master
1
+
# Assignment 2 for the DataCamp course X-DataScience Master - pandas
2
2
3
3
## What we want you to learn by doing this assignment:
4
4
@@ -12,9 +12,14 @@
12
12
13
13
- Fork the repository by clicking on the `Fork` button on the upper right corner
14
14
- Clone the repository of your fork with: `git clone https://github.com/MYLOGIN/datacamp-assignment-pandas` (replace MYLOGIN with your GitHub login)
15
-
- Create a branch called `myassignment` using `git checkout -b myassignment`
15
+
- Create a branch called `MYLOGIN` using `git checkout -b MYLOGIN`
16
16
- Make the changes to complete the assignment. You have to modify the files that contain `questions` in their name. Do not modify the files that start with `test_`.
17
-
- Open the pull request on GitHub
17
+
- Check locally that your solution meet the test by running `pytest` from the root of the repo. You may need to install `pytest` using `pip` or `conda`.
18
+
- Check the code formating for your solution using `flake8`. You may need to install `flake8` using `pip` or `conda`.
19
+
- Open the pull request on GitHub:
20
+
- Create a commit with `git add -u` and `git commit -m "UP my solution"`
21
+
- Push your branch on your fork: `git push -u origin MYLOGIN`
22
+
- Go to your repo in your browser and click the `Open a PR` button.
18
23
- Keep pushing to your branch until the continuous integration system is green.
19
24
- When it is green notify the professors on Slack that your done.
0 commit comments