Anshul Dutt Sharma
Anshul Dutt Sharma
Fix write_tv file error in examples showing invalid document for issue #128
Fix #83. Correct typo in document file
The file write_tv.py in examples is not able to write to the sample.tag file. Errors are displaying showing that the document is invalid and spdx_id undefined.
Using the docker setup command, I ran the command- docker run -it -v ${PWD}:/home/test-user/app/ -v path/to/conf.yaml:/home/test-user/conf.yaml -e PYTHONPATH=/home/test-user/app release-bot-tests /bin/bash and replaced the path with my own. But an error...
Some tests need to done to ensure proper workflow of the the website. Refer to #149 for example.
` driver.find_element_by_id('unarchive_button' + str(archive_license_obj.id)).click() driver.find_element_by_id('confirm_unarchive').click() self.assertEquals(LicenseRequest.objects.get(id=archive_license_obj.id).archive, False) if driver.find_element_by_id('unarchive_button' + str(archive_license_obj.id)): driver.find_element_by_id('unarchive_button' + str(archive_license_obj.id)).click() driver.find_element_by_id('confirm_unarchive').click() self.assertEquals(LicenseRequest.objects.get(id=archive_license_obj.id).archive, False) else: pass` The archive request feature is available only for those who are...