These were generated from https://github.com/mrblasco/genderNamesITA and https://en.wiktionary.org/wiki/Appendix:Italian_surnames, respectively.
I hereby claim:
- I am allanlewis on github.
- I am allanlewis (https://keybase.io/allanlewis) on keybase.
- I have a public key ASBePRIeLQnucZrHS32UGuCF708wrCf996dBzvmne8fDago
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
python ?= python3 | |
pip := pip --disable-pip-version-check | |
export PATH := .env/bin:$(PATH) | |
####################### | |
# Python environments # | |
####################### | |
.env: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.test; | |
import java.net.MalformedURLException; | |
import java.net.URL; | |
import org.openqa.selenium.By; | |
import org.openqa.selenium.remote.DesiredCapabilities; | |
import org.openqa.selenium.support.events.EventFiringWebDriver; | |
import org.testng.annotations.Test; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project name="JUnit Reporter" basedir="." default="main"> | |
<mkdir dir="reports" /> | |
<target name="junit"> | |
<junitreport todir="./reports"> | |
<fileset dir="."> | |
<include name="junit.xml"/> | |
</fileset> | |
<report format="frames" todir="./reports/frames" /> | |
<report format="noframes" todir="./reports/noframes" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@pytest.yield_fixture(autouse=True) | |
def newline_before_logging(request): | |
if request.config.getoption('capture') == 'no': | |
print() # new-line | |
yield |